WAP版浏览器不支持.NET的linkButton

网友投稿 223 2022-11-04


WAP版浏览器不支持.NET的linkButton

在我们网站FOR WAP版的某个页面上放了两个LinkButton,结果用手机自带的WAP浏览器看的时候,提示 通信协议不支持。

改成 Button 就可以了。

查找代码如下:

string GetPostBackControlName() { Control control = null; string ctrlname = Page.Request.Params["__EVENTTARGET"]; if (ctrlname != null && ctrlname != String.Empty) { control = Page.FindControl(ctrlname); } else { Control c; foreach (string ctl in Page.Request.Form) { if (ctl.EndsWith(".x") || ctl.EndsWith(".y")) { c = Page.FindControl(ctl.Substring(0, ctl.Length - 2)); } else { c = Page.FindControl(ctl); } if (c is System.Web.UI.WebControls.Button || c is System.Web.UI.WebControls.ImageButton) { control = c; break; } } } if (control != null) return control.ID; else return string.Empty; }


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:出行防疫政策查询API(出行防疫政策查询功能)
下一篇:Android程序的版本检测与更新
相关文章

 发表评论

暂时没有评论,来抢沙发吧~