如果頁面單純的使用js來創建,要寫大量的程式碼,而且不直觀。
在asp.net中,其實我們可以建立使用者自訂控件,透過Ajax請求返回使用者自訂控件HTML程式碼。
public static string RangerUsControl(string controlName) { StringBuilder build = new StringBuilder(); HtmlTextWriter htmlWriter = new HtmlTextWriter(new StringWriter(build)); UserControl uc = new UserControl(); Control ctrl=uc.LoadControl(controlName+".ascx");//加载用户定义控件 TextBox txtBox1 = ctrl.FindControl("TextBox1") as TextBox;//获得id为“TextBox1”的控件 txtBox1.Text = "测试"; //给控件初始化 string result; try { ctrl.RenderControl(htmlWriter); } catch { } finally { htmlWriter.Flush(); result=build.ToString(); } return result;//返回控件的HTML代码 } htmlWriter.Flush();
更多Asp.net 動態載入使用者自訂控制項,並轉換成HTML程式碼相關文章請關注PHP中文網!