ASP.NET seems to work so much different than ASP. I'm having difficulty passing values between forms.
I've tried this in the called form:
And I've tried this in the calling form -- trying to save them to a session variable and then picking it up in the called form:
then in the called form:
But neither works. Can anybody give me a hand with this, please? Thanks, everybody for your patience.
dpdoug
I've tried this in the called form:
Code:
strStore = Request.Form("cboStore")
strCompany = Request.Form("cboCompany")
Code:
Private Sub cmdNavegate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdNavegate.Click
Session("cboStore") = Me.cboStore.SelectedItem.Value
Session("cboCompany") = Me.cboCompany.SelectedItem.Value
Response.Redirect("[URL unfurl="true"]http://localhost/rsc/profile_add.asp")[/URL]
End Sub
then in the called form:
Code:
strStore = session("cboStore")
strCompany = session("cboCompany")
But neither works. Can anybody give me a hand with this, please? Thanks, everybody for your patience.
dpdoug