Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
Questionhelp with realization Pin
polycom1234-Jan-11 4:54
polycom1234-Jan-11 4:54 
AnswerRe: help with realization Pin
Luc Pattyn4-Jan-11 5:00
sitebuilderLuc Pattyn4-Jan-11 5:00 
GeneralRe: help with realization Pin
polycom1234-Jan-11 18:38
polycom1234-Jan-11 18:38 
Questionhow to pass parameters and values with function name in url? Pin
roebuck-code3-Jan-11 22:17
roebuck-code3-Jan-11 22:17 
AnswerRe: how to pass parameters and values with function name in url? PinPopular
Keith Barrow4-Jan-11 0:22
professionalKeith Barrow4-Jan-11 0:22 
GeneralRe: how to pass parameters and values with function name in url? Pin
Dalek Dave4-Jan-11 0:59
professionalDalek Dave4-Jan-11 0:59 
GeneralRe: how to pass parameters and values with function name in url? Pin
roebuck-code4-Jan-11 2:31
roebuck-code4-Jan-11 2:31 
GeneralRe: how to pass parameters and values with function name in url? Pin
Keith Barrow4-Jan-11 3:01
professionalKeith Barrow4-Jan-11 3:01 
roebuck-code wrote:
about point 2:arrival parameters evaluate in another software that send these to this web service.so they are correct.


Not necessarily: their code could be buggy, the web-service client they are using might be poorly formed or of a different version. You need to check the values coming in. You shouldn't trust anything coming into your webservice, even if you provide it.

IIRC, the values from the querystring don't get passed into the asmx method by default, they normally come from the SOAP message. As for getting stuff from the query string you'd have to do something like the following:
string value = Request.QueryString.Get("name").ToString();


GeneralRe: how to pass parameters and values with function name in url? Pin
fjdiewornncalwe4-Jan-11 3:28
professionalfjdiewornncalwe4-Jan-11 3:28 
AnswerRe: how to pass parameters and values with function name in url? Pin
Not Active4-Jan-11 2:34
mentorNot Active4-Jan-11 2:34 
GeneralRe: how to pass parameters and values with function name in url? Pin
roebuck-code4-Jan-11 3:16
roebuck-code4-Jan-11 3:16 
GeneralRe: how to pass parameters and values with function name in url? [modified] Pin
Manfred Rudolf Bihy4-Jan-11 4:21
professionalManfred Rudolf Bihy4-Jan-11 4:21 
GeneralRe: how to pass parameters and values with function name in url? Pin
roebuck-code4-Jan-11 19:57
roebuck-code4-Jan-11 19:57 
GeneralRe: how to pass parameters and values with function name in url? Pin
Manfred Rudolf Bihy5-Jan-11 1:49
professionalManfred Rudolf Bihy5-Jan-11 1:49 
GeneralRe: how to pass parameters and values with function name in url? Pin
roebuck-code5-Jan-11 2:49
roebuck-code5-Jan-11 2:49 
GeneralRe: how to pass parameters and values with function name in url? Pin
Manfred Rudolf Bihy5-Jan-11 3:05
professionalManfred Rudolf Bihy5-Jan-11 3:05 
GeneralRe: how to pass parameters and values with function name in url? [modified] Pin
roebuck-code5-Jan-11 21:55
roebuck-code5-Jan-11 21:55 
AnswerRe: how to pass parameters and values with function name in url? Pin
roebuck-code12-Feb-11 20:13
roebuck-code12-Feb-11 20:13 
QuestionFail to read simple string from the registry ( code attached ) Pin
Yanshof3-Jan-11 21:46
Yanshof3-Jan-11 21:46 
AnswerRe: Fail to read simple string from the registry ( code attached ) Pin
JF20153-Jan-11 22:00
JF20153-Jan-11 22:00 
GeneralRe: Fail to read simple string from the registry ( code attached ) Pin
Yanshof3-Jan-11 22:15
Yanshof3-Jan-11 22:15 
GeneralRe: Fail to read simple string from the registry ( code attached ) Pin
JF20153-Jan-11 22:18
JF20153-Jan-11 22:18 
GeneralRe: Fail to read simple string from the registry ( code attached ) Pin
Yanshof3-Jan-11 22:32
Yanshof3-Jan-11 22:32 
GeneralRe: Fail to read simple string from the registry ( code attached ) Pin
JF20153-Jan-11 22:46
JF20153-Jan-11 22:46 
GeneralRe: Fail to read simple string from the registry ( code attached ) Pin
JF20153-Jan-11 22:25
JF20153-Jan-11 22:25 

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.