Click here to Skip to main content
15,888,521 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Asp report using Access database Pin
Paul Conrad1-Dec-07 9:03
professionalPaul Conrad1-Dec-07 9:03 
AnswerRe: Asp report using Access database Pin
Michael Sync1-Dec-07 4:54
Michael Sync1-Dec-07 4:54 
AnswerRe: Asp report using Access database Pin
Paul Conrad1-Dec-07 9:03
professionalPaul Conrad1-Dec-07 9:03 
AnswerRe: Asp report using Access database Pin
Christian Graus1-Dec-07 9:42
protectorChristian Graus1-Dec-07 9:42 
QuestionWebservices Problem?? Pin
Vanamaindia1-Dec-07 1:30
Vanamaindia1-Dec-07 1:30 
AnswerRe: Webservices Problem?? Pin
Sathesh Sakthivel1-Dec-07 1:45
Sathesh Sakthivel1-Dec-07 1:45 
GeneralRe: Webservices Problem?? Pin
ReactiveX3-Dec-07 17:44
ReactiveX3-Dec-07 17:44 
AnswerRe: Webservices Problem?? Pin
Pete O'Hanlon4-Dec-07 10:56
mvePete O'Hanlon4-Dec-07 10:56 
It is possible - with limitations. Effectively a property is just a set of special methods marked as get_ and set_ such as:
private int _item;
public int get_Item()
{
  return _item;
}
public void set_Item(int value)
{
  _item = value;
}
A limitation though is that a web service is stateless, so you need to be careful how you maintain the state.


Deja View - the feeling that you've seen this post before.

My blog | My articles



Questionredirect to https [modified] Pin
Dharti Gajjar1-Dec-07 1:12
Dharti Gajjar1-Dec-07 1:12 
AnswerRe: redirect to https Pin
Sathesh Sakthivel1-Dec-07 1:43
Sathesh Sakthivel1-Dec-07 1:43 
AnswerRe: redirect to https Pin
Michael Sync1-Dec-07 4:57
Michael Sync1-Dec-07 4:57 
AnswerRe: redirect to https Pin
Paul Conrad1-Dec-07 9:04
professionalPaul Conrad1-Dec-07 9:04 
AnswerRe: redirect to https Pin
Christian Graus1-Dec-07 9:43
protectorChristian Graus1-Dec-07 9:43 
QuestionJavascript Session Pin
kirthikirthi1-Dec-07 1:09
kirthikirthi1-Dec-07 1:09 
GeneralRe: Javascript Session Pin
Guffa1-Dec-07 3:21
Guffa1-Dec-07 3:21 
GeneralRe: Javascript Session Pin
Sathesh Sakthivel1-Dec-07 4:54
Sathesh Sakthivel1-Dec-07 4:54 
Questioncallback Pin
helelark1231-Dec-07 1:03
helelark1231-Dec-07 1:03 
AnswerRe: callback Pin
Paul Conrad1-Dec-07 9:05
professionalPaul Conrad1-Dec-07 9:05 
GeneralRe: callback Pin
helelark1231-Dec-07 21:36
helelark1231-Dec-07 21:36 
Questionabout slang word detector Pin
herodhk1-Dec-07 0:55
herodhk1-Dec-07 0:55 
AnswerRe: about slang word detector Pin
Paul Conrad1-Dec-07 9:06
professionalPaul Conrad1-Dec-07 9:06 
GeneralRe: about slang word detector Pin
herodhk1-Dec-07 16:53
herodhk1-Dec-07 16:53 
Questionfile download problem Pin
Sunil Wise1-Dec-07 0:40
professionalSunil Wise1-Dec-07 0:40 
QuestionI upload a site but it display an error "Object reference not set to an instance of an object" Pin
Deepthy.P.M30-Nov-07 23:23
Deepthy.P.M30-Nov-07 23:23 
AnswerRe: I upload a site but it display an error "Object reference not set to an instance of an object" Pin
Christian Graus30-Nov-07 23:46
protectorChristian Graus30-Nov-07 23:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.