How to use Httpcontext.Current.Request.Querystring to pass 2 items

  • Thread starter Thread starter oembuilders
  • Start date Start date
O

oembuilders

I have successfully passed a single date from a asp.net calendar to
another page using the code below. I would like to know if there is
any way to pass 2 date to to different textbox on another page.

strjscript &= "window.opener." & _
Httpcontext.Current.Request.Querystring("formname") &
".value = '" & _
Calendar1.SelectedDate & "';window.close();"
strjscript = strjscript & "</script" & ">"
 
Oembuilder,

Yes using a session item (assuming that you are talking about VBNet)

Cor
 
Back
Top