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
 
Back
Top