Click here to Skip to main content
15,903,523 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: AutoComplete Extender in VS 2008 Pin
raju melveetilpurayil14-Oct-10 0:14
professionalraju melveetilpurayil14-Oct-10 0:14 
Questionone API for all social networks! Pin
Jassim Rahma13-Oct-10 5:17
Jassim Rahma13-Oct-10 5:17 
AnswerRe: one API for all social networks! Pin
fjdiewornncalwe13-Oct-10 8:55
professionalfjdiewornncalwe13-Oct-10 8:55 
Questionreturn more than one value from web service Pin
Jassim Rahma13-Oct-10 3:57
Jassim Rahma13-Oct-10 3:57 
AnswerRe: return more than one value from web service Pin
Luc Pattyn13-Oct-10 4:07
sitebuilderLuc Pattyn13-Oct-10 4:07 
GeneralRe: return more than one value from web service Pin
Jassim Rahma13-Oct-10 4:18
Jassim Rahma13-Oct-10 4:18 
GeneralRe: return more than one value from web service Pin
fjdiewornncalwe13-Oct-10 8:59
professionalfjdiewornncalwe13-Oct-10 8:59 
AnswerRe: return more than one value from web service Pin
Brij13-Oct-10 4:54
mentorBrij13-Oct-10 4:54 
Basically, you have two options.
One create you own custom datatype, having as many properties as you want, and return the object of that.

Another approach would be,passing a ref parameter define webmethod
parameters, like

[WebMethod]
public string myMethod(string Id, ref int status)
{
status = 3;
return "result";
}

Now you will both the values at client.

Questionprotect web service?! Pin
Jassim Rahma13-Oct-10 3:32
Jassim Rahma13-Oct-10 3:32 
AnswerRe: protect web service?! Pin
Karthik. A13-Oct-10 5:09
Karthik. A13-Oct-10 5:09 
QuestionWORKFLOW IN ASP.NET Pin
Member 322226413-Oct-10 0:29
Member 322226413-Oct-10 0:29 
Questionhow to run outlook on client Pin
magichi12-Oct-10 20:14
magichi12-Oct-10 20:14 
AnswerRe: how to run outlook on client Pin
Brij12-Oct-10 20:56
mentorBrij12-Oct-10 20:56 
AnswerRe: how to run outlook on client Pin
Sneha Bisht12-Oct-10 22:53
Sneha Bisht12-Oct-10 22:53 
GeneralRe: how to run outlook on client Pin
magichi12-Oct-10 22:56
magichi12-Oct-10 22:56 
GeneralRe: how to run outlook on client Pin
Sneha Bisht12-Oct-10 23:03
Sneha Bisht12-Oct-10 23:03 
GeneralRe: how to run outlook on client Pin
magichi13-Oct-10 16:50
magichi13-Oct-10 16:50 
AnswerRe: how to run outlook on client Pin
Pete O'Hanlon12-Oct-10 23:18
mvePete O'Hanlon12-Oct-10 23:18 
GeneralRe: how to run outlook on client Pin
magichi13-Oct-10 16:43
magichi13-Oct-10 16:43 
AnswerRe: how to run outlook on client Pin
Anurag Gandhi13-Oct-10 0:17
professionalAnurag Gandhi13-Oct-10 0:17 
AnswerRe: how to run outlook on client Pin
fjdiewornncalwe13-Oct-10 3:42
professionalfjdiewornncalwe13-Oct-10 3:42 
GeneralRe: how to run outlook on client Pin
magichi13-Oct-10 16:56
magichi13-Oct-10 16:56 
GeneralRe: how to run outlook on client Pin
fjdiewornncalwe14-Oct-10 13:15
professionalfjdiewornncalwe14-Oct-10 13:15 
QuestionUpdate all gridview rows at once Pin
amina8912-Oct-10 1:47
amina8912-Oct-10 1:47 
AnswerRe: Update all gridview rows at once Pin
Geoff Williams12-Oct-10 3:06
Geoff Williams12-Oct-10 3:06 

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.