Hello All,
I have an Access 97 database that is passing values from a form via a url/hyperlink to two fields on a .aspx form. I can get one of the values to pass correctly, but not the second. I created a public constant, as you can see, so that all I have to do is type that variable name instead of the entire url/hyperlink whenever I needed it.
My url/hyperlink looks as follows:
Passing one variable works great. See below:
If anyone can guide me in the write direction, it would be greatly appreciated.
I have an Access 97 database that is passing values from a form via a url/hyperlink to two fields on a .aspx form. I can get one of the values to pass correctly, but not the second. I created a public constant, as you can see, so that all I have to do is type that variable name instead of the entire url/hyperlink whenever I needed it.
My url/hyperlink looks as follows:
Code:
Public Const CRWebRequest = "[URL unfurl="true"]http://webtest1/crportal/RequestReport.aspx?txtName="[/URL] & " txtTransID="
Passing one variable works great. See below:
Code:
Public Const CRWebRequest = "[URL unfurl="true"]http://webtest1/crportal/RequestReport.aspx?txtName="[/URL]
If anyone can guide me in the write direction, it would be greatly appreciated.