2014年8月21日 星期四

C# Code Inside in ASP.NET Page Tags




<% int id = int.Parse(Request["id"]); %>

<%# Eval("id") %>



" />

<%  //without this bind the <%# will be ignored
    void Page_Load( object sender, EventArgs e ) {
        demo.DataBind(); 
        //or
        repeaterWithManyLinks.DataBind(); 
    } 
%>

Use a repeater and <%# Eval(...) %> with repeater.DataBind();

Use a foreach loop (<% foreach(... %>) with <%= ... %>

轉自 http://stackoverflow.com/questions/1158424/how-to-use-c-sharp-code-inside-tags-on-asp-net-page

沒有留言:

張貼留言