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
 

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