F
FeatureRich
I have a very simple page. On load, it populates a drop down list.
Once something is selected and a continue button is pressed, the data
value of the selection is appended to a url as a query string and then
the user is redirected to the new URL. Here is my problem..
Suspect code
Private Sub btnContinue_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnContinue.Click
Response.Redirect("page2.aspx?state=" & ddlStateSelect.SelectedValue)
End Sub
With the project running local, in IE6 on my machine - everything
works.
With the project running on a test W3K server built in release mode -
the postback happens but no redirect.
With the project running on a test W3K server built in release mode,
running a FireFox browser - everything works.
With the project running on a test W3K server built in debug mode and
run through VS.Net debugging - everything works.
What gives? On IE6 with a release build the button click causes the
page to be refreshed but the redirect is never called. It is the only
line of code in the click event handler and the load is working fine.
Any ideas? Once more, why would the exact same run work in other
browsers but not IE?
Thanks
Once something is selected and a continue button is pressed, the data
value of the selection is appended to a url as a query string and then
the user is redirected to the new URL. Here is my problem..
Suspect code
Private Sub btnContinue_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnContinue.Click
Response.Redirect("page2.aspx?state=" & ddlStateSelect.SelectedValue)
End Sub
With the project running local, in IE6 on my machine - everything
works.
With the project running on a test W3K server built in release mode -
the postback happens but no redirect.
With the project running on a test W3K server built in release mode,
running a FireFox browser - everything works.
With the project running on a test W3K server built in debug mode and
run through VS.Net debugging - everything works.
What gives? On IE6 with a release build the button click causes the
page to be refreshed but the redirect is never called. It is the only
line of code in the click event handler and the load is working fine.
Any ideas? Once more, why would the exact same run work in other
browsers but not IE?
Thanks