K
K Viltersten
I discovered that when requested
http://localhost:52698/ws3/page.aspx
and issued a call
Response.Write(Request.Params.Count);
i got 50 parameters in count. When i
actually added some as in
http://localhost:52698/ws3/page.aspx?key=some
the number increased by two to 52. I'd
be delighted if somebody enlighten me
in this matter.
1. Why is it an increase by two? Is it
because the "key" and "some" are counted
as separate paramters?
2. Where in Gods love are the first
fifty parameters?!
3. Should i use Request.Params or is
there something more recommended, e.g.
Request.QueryString?
http://localhost:52698/ws3/page.aspx
and issued a call
Response.Write(Request.Params.Count);
i got 50 parameters in count. When i
actually added some as in
http://localhost:52698/ws3/page.aspx?key=some
the number increased by two to 52. I'd
be delighted if somebody enlighten me
in this matter.
1. Why is it an increase by two? Is it
because the "key" and "some" are counted
as separate paramters?
2. Where in Gods love are the first
fifty parameters?!
3. Should i use Request.Params or is
there something more recommended, e.g.
Request.QueryString?