摘要: Ajax请求的WebService方法:[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. [System.Web.Script.Services.ScriptService]public class Pa 阅读全文
posted @ 2012-12-26 22:28 csdnbbs 阅读(275) 评论(0) 推荐(0)
摘要: 问题:类型“CheckBox”的控件“ctl01”必须放在具有 runat=server 的窗体标记内。解决方法:1. 把CheckBox控件放到 from内。2. 覆盖Page的VerifyRenderingInServerForm方法 public override void VerifyRenderingInServerForm(Control control) { //base.VerifyRenderingInServerForm(control); } 阅读全文
posted @ 2012-12-26 22:23 csdnbbs 阅读(140) 评论(0) 推荐(0)