Using ASP.NET Controls without databinding

后端 未结 2 1518
忘掉有多难
忘掉有多难 2021-01-17 01:23

It appears that I have been using asp.net databinding for so long I have forgotten some of the basics.

I am dynamically creating a table in an ASPX page without dat

2条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-17 01:47

    You can pass the parameters by query string.
    something like this :

    foreach (XXX x in TTTT){ %>
       
           <%=x.val %>
               
                   
               
     <% } %>
    

提交回复
热议问题