DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 服務器控件中js腳本注冊方法
服務器控件中js腳本注冊方法
編輯:關於JavaScript     

方法1

        #region 靜態javascript腳本
       const string sScript=@"<script type=""text/javascript"" language='javascript'> ... </script>

protected override void Render(HtmlTextWriter output)
  {
   output.Write(sScript);
  }

方法2

using(StreamReader reader = new StreamReader(this.GetType().Assembly.GetManifestResourceStream(GetType(), "jsName.js")))
   {
    string sJsSlider = reader.ReadToEnd();
  
    output.Write(sJsSlider);
   }

方法3

using(StreamReader reader = new StreamReader(this.GetType().Assembly.GetManifestResourceStream(GetType(), "jsName.js")))
   {
    string sJsStart = reader.ReadToEnd();
    Page.RegisterStartupScript(this.GetType().ToString() + this.UniqueID + "_Startup", sJsStart);
   }

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved