Questions tagged «postback»

17
带ASP.NET按钮回发的jQuery UI对话框
我的jQuery UI对话框在我的ASP.NET页上运行良好: jQuery(function() { jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 }); }); jQuery(document).ready(function() { jQuery("#button_id").click(function(e) { jQuery('#dialog').dialog('option', 'position', [e.pageX + 10, e.pageY + 10]); jQuery('#dialog').dialog('open'); }); }); 我的div: <div id="dialog" style="text-align: left;display: none;"> <asp:Button ID="btnButton" runat="server" Text="Button" onclick="btnButton_Click" /> …

30
无效的回发或回调参数。使用'<pages enableEventValidation =“ true” />'启用事件验证
当我从客户端发回页面时,出现以下错误。我有修改客户端的asp:ListBox的JavaScript代码。 我们该如何解决? 错误详情如下: Server Error in '/XXX' Application. -------------------------------------------------------------------------------- Invalid postback or callback argument. Event validation is enabled using &lt;pages enableEventValidation="true"/&gt; in configuration or &lt;%@ Page EnableEventValidation="true" %&gt; in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that …

7
如何使用__doPostBack()
我正在尝试使用在ASP.NET中创建异步回发__doPostBack(),但是我不知道该怎么做。我想使用香草JavaScript。 诸如单击按钮之类的简单操作可能导致__doPostBack()事件触发。我只是想学习该机制的工作原理。

11
什么是回发?
我正在进入Web开发,并且看到了回发这个词。来自非基于Web的背景,新的Web开发人员对回发有什么了解?(即它们是什么,它们何时出现?) 非常感谢您想分享任何信息以帮助网络新手了解回发。
142 postback 


8
使用JavaScript的ASP.NET回发
我有几个div正在使用jQuery可拖动的小。这些div放置在中UpdatePanel,并且在dragstop上使用_doPostBack()JavaScript函数,在其中我从页面的表单中提取必要的信息。 我的问题是,当我调用此函数时,将重新加载整个页面,但是我只希望重新加载更新面板。

13
让PHP停止替换“。” $ _GET或$ _POST数组中的字符?
如果我.通过$ _GET传递名称中带有PHP变量的PHP,则会自动用_字符替换它们。例如: &lt;?php echo "url is ".$_SERVER['REQUEST_URI']."&lt;p&gt;"; echo "x.y is ".$_GET['x.y'].".&lt;p&gt;"; echo "x_y is ".$_GET['x_y'].".&lt;p&gt;"; ...输出以下内容: url is /SpShipTool/php/testGetUrl.php?x.y=a.b x.y is . x_y is a.b. ...我的问题是:有什么办法可以阻止我?无法为我的一生弄清我应做的一切 我运行的PHP版本是5.2.4-2ubuntu5.3。
76 php  regex  postback 

11
DropDownList中的ListItems属性在回发时丢失了吗?
一位同事向我展示了这一点: 他在网页上有一个DropDownList和一个按钮。这是背后的代码: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ListItem item = new ListItem("1"); item.Attributes.Add("title", "A"); ListItem item2 = new ListItem("2"); item2.Attributes.Add("title", "B"); DropDownList1.Items.AddRange(new[] {item, item2}); string s = DropDownList1.Items[0].Attributes["title"]; } } protected void Button1_Click(object sender, EventArgs e) { DropDownList1.Visible = !DropDownList1.Visible; } 在页面加载时,将显示项目的工具提示,但在第一次回发时,属性将丢失。为什么会这样,并且有任何解决方法?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.