Dışardan script dosyası eklemek istersek
HtmlGenericControl Include = new HtmlGenericControl("script"); Include.Attributes.Add("type", "text/javascript");
Include.Attributes.Add("src", "/__utm.js");
Page.Header.Controls.Add(Include);
Direk kod yazmak istersek
HtmlGenericControl Include = new HtmlGenericControl("script"); Include.Attributes.Add("type", "text/javascript");
Include2.InnerHtml = "alert('We added it to the head');";
Page.Header.Controls.Add(Include);
Bu makale 492 kere okundu.











