點gridview彈出新窗口

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace Yin{
    public partial class manWare : System.Web.UI.Page{

        public string allNodes = "";
        protected void Page_Load(object sender, EventArgs e){
            WareType cate = new WareType();
            allNodes = cate.getAllNodes();
        }

        #region 產品名單擊事件,彈出新窗口
        protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){
            if (e.Row.RowIndex > -1){
                e.Row.Cells[1].Attributes.Add("ondblclick", "window.open('editWare.aspx?index=" + (e.Row.RowIndex + 1).ToString() + "&id=" + e.Row.Cells[0].Text.Trim() + "',null,'width=400,height=108,left=300,top=200');");
            }
        }
        #endregion
    }
}

 OnRowDataBound="GridView1_RowDataBound" 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章