Bootstrap

前台获取后台c#代码

1.在前台html控件调用c#后台变量。
后台的类代码里定义一个字符串。如
public partial class Index : System.Web.UI.Page
{
    public string o_value = "";
}
然后可以写方法改变此字符串的值。
前台调用也很简单:
<input id="Text1" type="text" value="<%=o_value %>"/>
2.在前台html调用c#后台方法
后台有一个方法:
public string test()
    {
        return "fdfdfdfdsf";
    }
前台代码:
<input id="Text2" type="text" value="<%=test()%>"/>

;