getting arguments from a HTML page

  • Thread starter Thread starter EMW
  • Start date Start date
E

EMW

I have created an INDEX.HTML file that uses javascript to get the browser
window size and then redirects immidiately to my ASPX file with
"fshome.aspx?width=1122,height=633"
But how do I read these values in my aspx file?

rg,
Eric
 
Eric,

You need ?width=1122&height=633. Then you can read them in using
Request.QueryString("Height") and Request.QueryString("Width")

HTH,

Raymond Lewallen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top