0
我有一個UserControl,其中包含gridview.I註冊這個usercontrol到一個頁面aspx normal.But它設置str_btn一直null當我按下選擇在GridView。如何從代碼隱藏中獲取UserControl中的GridView事件
if(!Page.IsPostBack)
{
}
else
{
string str_btn = null;
if (Request.Form.Keys[Request.Form.Keys.Count - 1]!=null)
str_btn=Request.Form.Keys[Request.Form.Keys.Count - 1].ToString();
if(!string.IsNullOrEmpty(str_btn))
handleClick(str_btn);
}
如何從aspx頁面在usercontrol中獲取Gridview事件?
感謝您的幫助。
哪裏是在你的代碼的用戶控制..?你怎麼加載/註冊用戶控件..?你能否請出示與你的問題有關的相關代碼......? – MethodMan
感謝您的支持,兄弟。我有2個鏈接詳細解釋這個問題。 http://stackoverflow.com/questions/14189851/cant-access-gridview-event-at-usercontrol-by-codebehind/14190246#comment19673274_14190246 – Brian
http://stackoverflow.com/questions/14150848/get-gridview-in-多用戶控制從代碼隱藏/ 14150889#comment19599867_14150889 – Brian