Hi everyone,
I'm trying to send variables from a file called "DccSelection.aspx" to "WebForm1.aspx" using the post attribute of the form tag as follows:
<form name="DccResult" method="post" action="WebForm1.aspx?BaseCurrency=EUR&Culture=EN&BaseAmount=166.56"
id="DccResult">
Problem is though I don't know how to capture these variables in the "WebForm1.aspx" page. How do I do this? Here is the code from WebForm1:
Public Class WebForm1
Inherits System.Web.UI.Page
Dim baseAmount As String
Dim convertedBaseAmount As Int16
Dim baseCurrency As String
Dim baseCulture As String
Sub imgSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles imgSubmit.Click
End Sub
I'm trying to send variables from a file called "DccSelection.aspx" to "WebForm1.aspx" using the post attribute of the form tag as follows:
<form name="DccResult" method="post" action="WebForm1.aspx?BaseCurrency=EUR&Culture=EN&BaseAmount=166.56"
id="DccResult">
Problem is though I don't know how to capture these variables in the "WebForm1.aspx" page. How do I do this? Here is the code from WebForm1:
Public Class WebForm1
Inherits System.Web.UI.Page
Dim baseAmount As String
Dim convertedBaseAmount As Int16
Dim baseCurrency As String
Dim baseCulture As String
Sub imgSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles imgSubmit.Click
End Sub