Rank: Member Groups: Member
Joined: 1/2/2011 Posts: 19
|
When I execute eo_TriggerServerEvent(), any occurences of lowercase "s" in the command argment are translated to "!1". I am using VS 2008 and have recreated this problem with both IE8 and the Chrome browser. Markup and codebehind are shown below (I see the translation when I examine e.CommandArgument in the debugger).
thanks,
Pete
Markup:
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title>
<script type="text/javascript"> function window_onload() { eo_TriggerServerEvent('EO_ScriptEvent1', 'Rename', 'asdf'); }
</script>
</head> <body onload="return window_onload()"> <form id="form1" runat="server"> <eo:ScriptEvent ID="EO_ScriptEvent1" runat="server" /> </form> </body> </html>
Code Behind:
Partial Public Class _WebForm Inherits System.Web.UI.Page
Private Sub EO_ScriptEvent1_Command(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs) Handles EO_ScriptEvent1.Command
End Sub End Class
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe this is a known issue for which we already have a new build with the fix. Please see your private message for the download location of the new build.
Thanks!
|