關於updatepanel中註冊執行javascript

來源:互聯網
上載者:User
    好些天都在糊裡糊塗,最近也比較懶,居然看到了個留言,永遠不更新的部落格一等獎,相當尷尬,哈哈。寫一些最近自己或別人遇到的小問題吧。
    1、關於updatepanel註冊js
    最近在項目裡需要用到altas,本人也是新手,老用最簡單的updatepanel,在註冊指令碼時也遇到了困難,無法註冊。本來是在updatepanel中放了一個gridview,偶想在girdview中一個模板列點擊彈出一個表單,註冊window.open()來解決問題。本來不是在updatepanel中,所以用ClientScript.RegisterStartupScript直接註冊挺好使。
    在拖入updatepanel後發現無法註冊指令碼,想想RegisterStartupScript本來是在頁面載入時啟動js的,在updatepanel中部分重新整理,肯定是無法註冊的。
    後來發現了ScriptManager.RegisterStartupScript方法,挺好使,呵呵。
    ScriptManager.RegisterClientScriptBlock(UpdatePanelName, typeof(UpdatePanel), "標識key", "指令碼", true);
    下面是一個demo,模板列定義如下:

<asp:TemplateField HeaderText="客戶ID">
     <ItemTemplate>            
       <asp:LinkButton ID="linkbtnCID"  runat="server"  Text='<%# Eval("CID") %>' CommandName="linkbtnCID"   >                      </asp:LinkButton>
      </ItemTemplate>
</asp:TemplateField>

   
    在GridView對應的RowCommand事件中如下操作:

protected void gvClientInfo_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        //如果是linkButton被點擊
        if(e.CommandName.Equals("linkbtnCID"))
        {
            LinkButton lbtn = (LinkButton)e.CommandSource;
            GridViewRow dgRow = (GridViewRow)lbtn.Parent.Parent;
            string tmpText = lbtn.Text.ToString();          
            tmpText ="window.open('customerDetailsInfo.aspx?CID=" + tmpText + "' ,'newwindow','height=550,
                width=700, menubar=no ')";
            ScriptManager.RegisterStartupScript(this.UpdatePanel2, this.GetType(), "click", tmpText, true);      
      
        }
    }

    2、關於RegisterStartupScript,RegisterClientScriptBlock
        RegisterStartupScript 將 js嵌入到頁面的底部,</form> 的前面
        RegisterClientScriptBlock 將 js嵌入到頁面中開啟元素 <form> 後面

    3、關於“該行已經屬於另一個表”錯誤
       這個問是出現在不同dataTable之間的行複製出現的問題。
       看這個代碼:
         DataTable tmpdt = sodo.getDataTable("text", strSql, sp);             
 dt.Rows.Add(tmpdt.Rows[0]);

    
     這個明顯的錯誤就是tmpdt的行是一個對象引用,相當於一個指標,錯誤是難免的,可有以下解決辦法:

DataTable tmpdt = sodo.getDataTable("text", strSql, sp);             
1、 dt.Rows.Add(tmpdt.Rows[0].ItemArray);
2、 dt.ImportRow(tmpdt.Rows[0]);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.