QueryString From Shared Function
Posted
by Kezzer
on Stack Overflow
See other posts from Stack Overflow
or by Kezzer
Published on 2009-12-10T10:51:48Z
Indexed on
2010/06/12
20:02 UTC
Read the original article
Hit count: 289
vb.net
|querystring
I'm trying to get a query string from a shared function in a code-behind model using VB.NET. You have to use HttpContext.Current.Request.QueryString("Query")
in order to get it from a shared function, however doing HttpContext.Current.Request.QueryString.Count
gives back 0, which obviously isn't right in my case as there's many that exist. Is there some sort of issue with using this static call from a shared function?
© Stack Overflow or respective owner