D
DougS
I have this code behind a button that does not work:
Dim sQuote As String = txtQuoteNum.Text
Dim iQuote As Int32 = CType(sQuote, Int32)
Dim sUrl As String = "Demographics.aspx?Quote=" & iQuote.ToString
Response.Redirect(sUrl)
I have just deployed this asp.net app to the server and have wierd
response.redirect behavior. Some pages redirect without any issue but this
button does not work. It just blanks out the current page and keeps the
current URL. If I change it to a response.write with the sUrl string and
then past it into the url it works just fine. I'm running framework 1.1
Thanks in advance,
DougS
Dim sQuote As String = txtQuoteNum.Text
Dim iQuote As Int32 = CType(sQuote, Int32)
Dim sUrl As String = "Demographics.aspx?Quote=" & iQuote.ToString
Response.Redirect(sUrl)
I have just deployed this asp.net app to the server and have wierd
response.redirect behavior. Some pages redirect without any issue but this
button does not work. It just blanks out the current page and keeps the
current URL. If I change it to a response.write with the sUrl string and
then past it into the url it works just fine. I'm running framework 1.1
Thanks in advance,
DougS