Status: Unconfirmed
Owner: ----
Labels: Type-Bug Pri-2 OS-All Area-Misc
New issue 23300 by brandonbu: javascript:__doPostBack function
http://code.google.com/p/chromium/issues/detail?id=23300
Chrome Frame Version : 4.0.211.7 (Official Build 26751)
Other browsers tested:
Add OK or FAIL after other browsers where you have tested this issue:
Safari 4:
Firefox 3.x: OK
IE 7: OK (Without Chrome Frame)
IE 8: OK (Without Chrome Frame)
Chrome Dev 4: OK
What steps will reproduce the problem?
I have an in house developed web app that works great on everything except
for an asp:LinkButton. When you click the button and it goes to process
the javascript: __doPostBack function the page comes to a crawl when
Chrome Frame is enabled. I can run the same page through Google Chrome
without an issue. I am going to attach the code I use. Hopefully I have
posted this in the proper area.
<asp:LinkButton ID="LBtnReasons" runat="server" Text="Add Reason Code"
CommandName="R"></asp:LinkButton>
#Region " Event: DlstActionCodes_ItemCommand "
Protected Sub DlstActionCodes_ItemCommand(ByVal source As Object,
ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs) Handles
DlstActionCodes.ItemCommand
Dim cPage As String
If Request.QueryString("page") Is Nothing Then
cPage = 1
Else
cPage = Request.QueryString("page")
End If
Select Case e.CommandName.ToUpper
Case "A"
Response.Redirect("EditClientCodes.aspx?cid=" &
ddlFacility.SelectedValue & "&code=0&page=" & cPage)
Case "E"
Response.Redirect("EditClientCodes.aspx?cid=" &
ddlFacility.SelectedValue & "&code=" & Me.DlstActionCodes.DataKeys.Item
(e.Item.ItemIndex).ToString() & "&page=" & cPage)
Case "D"
ExecuteDelete(Convert.ToInt32
(Me.DlstActionCodes.DataKeys.Item(e.Item.ItemIndex)))
LoadDataList(Me.ddlFacility.SelectedValue)
Case "R"
Response.Redirect("AddReasonToClientCode.aspx?cid=" &
ddlFacility.SelectedValue)
Case Else
End Select
End Sub
#End Region
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---