網(wǎng)站開發(fā)中,在頁面之間的跳轉(zhuǎn),經(jīng)常會用到傳值,其中可能會傳遞多個值。
一、CommadArgument傳多個值到其他頁面。
像Gridview dataList repeater等數(shù)據(jù)綁定控件中,可以使用CommadArgument傳多個值。
源的代碼(aspx頁面代碼)如下:這個代碼一般寫在項(xiàng)模板中,如果你用的第一種方法就不需要加上onclick事件,直接點(diǎn)擊數(shù)據(jù)綁定控件的RowCommand ,itemCommand事件,就行了。
復(fù)制代碼 代碼如下:
asp:ImageButton ID="editImageButton" runat="server" ImageUrl="~/images/bt_edit.gif" CommandArgument='%#Eval("dict_id")+","+Eval("dict_type")%>' onclick="editImageButton_Click" Height="20" Width="20" />
方法1,如果你用的GridView 控件,找到RowCommand事件雙擊,用的dataList,repeater控件就找到ItemCommand事件雙擊,后臺代碼如下:
復(fù)制代碼 代碼如下:
object[] arg=e.CommandArgument.ToString().split(','); //注意是單引號
string arg0=arg[0].ToString();
string arg1=arg[1].ToString();
方法2,在項(xiàng)模板中放入LinkButton控件。這個比較常用,自己動手給這個控件加上onClick事件。其后臺代碼如下:
復(fù)制代碼 代碼如下:
LinkButton lbt=(LinkButton)sender;
object[] arg=lbt.CommandArgument.ToString.split(',');
string arg0=arg[0].ToString();
string arg1=arg[1].ToString();
二、用超鏈接傳值,也是一種常用的方法
前臺代碼:
復(fù)制代碼 代碼如下:
a href="Default.aspx?id=%#Eval("dict_id")%>type=%#Eval("dict_type")%>">跳到Default.aspx頁面/a>
后臺:
復(fù)制代碼 代碼如下:
string strDict_id = Request.QueryString["dict_id"];
string strDict_type= Request.QueryString["dict_type"];
您可能感興趣的文章:- ASP.NET實(shí)現(xiàn)頁面?zhèn)髦档膸追N方法小結(jié)
- asp.net后臺關(guān)閉當(dāng)前頁面并傳值的兩種方法
- ASP.NET 頁面?zhèn)髦党S梅椒偨Y(jié)
- asp.net頁面?zhèn)髦禍y試實(shí)例代碼(前后臺)
- ASP.NET頁面?zhèn)鬟f值的方式介紹
- asp.net 頁面間傳值與跳轉(zhuǎn)的區(qū)別
- ASP.NET 頁面之間傳遞值方式優(yōu)缺點(diǎn)比較
- asp.net 頁面?zhèn)髦档膸讉€方法
- ASP.NET 跨頁面?zhèn)髦捣椒?/li>
- ASP.Net頁面間變量值傳遞的方法