我有一個ascx控件,它在設計時有一個字面值。 在運行時,在Page_Load中,我將文字的文本屬性設置爲從數據庫檢索到的javascript。 但是,它似乎沒有評估JavaScript代碼。我需要做什麼才能評估腳本?在ascx控件中動態添加的javascript沒有評估
在的.ascx:
<asp:Literal id="litTags" runat="server"></asp:Literal>
在ascx.cs:
protected void Page_Load(object sender, EventArgs e) { //Set literal's text to the script litTags.Text = "Javascript tag and script from database"; }
該代碼被適當地纏繞。 – laconicdev 2012-03-06 15:41:48