摘要:
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 &quo 阅读全文