Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have button and GridView at UserControl. When I press button.It will perform at PageLoad function. But when I click select in GridView.It can't work same button at PageLoad.

 if (!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);
                    else
                        Response.Redirect("../Ipservice/IpserviceDevices.aspx?btn=ipservice", false);
                }

Do you have any solution for resolved this issues.

I wondered if you share your knowledge

IpInterfaceUC UserControl

<div id="dvChannel" runat="server">
        <asp:GridView ID="gvChannelUC" 
            OnRowCommand="gvChannelUC_RowCommand"
            OnSelectedIndexChanged="gvChannel_SelectedIndexChanged"
        />
</div>

IPServices page CodeBehind

if (!IsPostBack){
}else
{    
 string str_btn = Request.Form.Keys[Request.Form.Keys.Count - 1].ToString();
 handleClick(str_btn);
}

Question

It always show str_btn is null.If I click Button,It'll show button's id.But when I click Select at GridView,It show str_btn is null.It should be show GridView's id when we click select.

Thanks for any explain.

share|improve this question
Where is the GridView markup? There is no reference to GridView in your question? – codingbiz Jan 9 at 9:26
Your accept rate is 0%? You need to do something to that... – codingbiz Jan 9 at 9:27
GridView is in UserControl.I click gridview event on aspx page. – Binh Tieu Jan 9 at 9:44
I edit my description issues.I wondered if you share me any your solution.Thanks – Binh Tieu Jan 9 at 10:17
Your GridView does not have a select button. At least your GridView should have AutoGenerateSelectButton="true". And why are you not using the normal event handlers like Button_Click, GridView_RowCommand? – codingbiz Jan 9 at 10:42
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.