How to get query string parameter value in html
-
Hi All, I want to redirect from aspx page to html page for this html page i'll pass query string parameter like this www.test.com/welcome.htm?login=sanju how to get querystring parameter value in html page. Thanks, Dharani.
-
Hi All, I want to redirect from aspx page to html page for this html page i'll pass query string parameter like this www.test.com/welcome.htm?login=sanju how to get querystring parameter value in html page. Thanks, Dharani.
You'd have to do it in javascript, and hope that javascript is turned on, on the client machine.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Hi All, I want to redirect from aspx page to html page for this html page i'll pass query string parameter like this www.test.com/welcome.htm?login=sanju how to get querystring parameter value in html page. Thanks, Dharani.
dim StrCom as string = Request.QueryString.GetValues("CID")(0)
Piyush Vardhan Singh Programmer TAS NewDelhi India
-
dim StrCom as string = Request.QueryString.GetValues("CID")(0)
Piyush Vardhan Singh Programmer TAS NewDelhi India
That's VB Script and therefore will only work in IE
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )