在 asp.net 中访问 html 控件: 一气之下,把所有控件都换成了 html 的,然后在控件上加上 runat=server 这样在 asp.net 中就可以引用了。用 (findcontrol(控件id) as html控件类型).属性,如 (this.findcontrol("ddlmonth") as htmlselect).selectedindex ......
在html网页中读取asp.net的变量 为了能够在js中读取asp.net中的数据,要保证asp.net中变量的类型js能够分辨,其实想办法变成string的就得了呗! 其次,要把变量声明为 public 的。 在js中使用 变量="<%#asp.net变量名%>"; 的形式即可得到变量的值,如 var id = "<%#userid%>"; (asp.net中public string userid = "zhangsan";