Click here to Skip to main content
15,886,199 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: unhanded exception Pin
Richard Andrew x6425-Jan-15 10:24
professionalRichard Andrew x6425-Jan-15 10:24 
AnswerRe: unhanded exception Pin
Simon_Whale25-Jan-15 22:06
Simon_Whale25-Jan-15 22:06 
AnswerRe: unhanded exception Pin
jschell27-Jan-15 10:49
jschell27-Jan-15 10:49 
QuestionWriting Reliable .NET Code Pin
manchanx23-Jan-15 16:09
professionalmanchanx23-Jan-15 16:09 
AnswerRe: Writing Reliable .NET Code Pin
Dominic Burford28-Jan-15 2:32
professionalDominic Burford28-Jan-15 2:32 
GeneralRe: Writing Reliable .NET Code Pin
manchanx28-Jan-15 2:44
professionalmanchanx28-Jan-15 2:44 
AnswerRe: Writing Reliable .NET Code Pin
harsimranb7-Feb-15 7:49
harsimranb7-Feb-15 7:49 
Questionlinkbutton is not working inside a gridview Pin
star_tasneem22-Jan-15 18:06
star_tasneem22-Jan-15 18:06 
protected void btnEdit_Click(object sender, EventArgs e)
    {
        try
        {
            GridViewRow row = ((LinkButton)sender).Parent.Parent as GridViewRow;
            HiddenField vId = (HiddenField)gvUser.Rows[row.RowIndex].FindControl("hdPK");
            form obj = new form(cmscon.CONNECTIONSTRING, Convert.ToInt32(vId.Value));
            GetValue(obj);
            Label1.Text = "";
            lblError.InnerHtml = "";
        }
        catch (Exception ex)
        {

        }
    }



XML
<asp:TemplateField HeaderText="Action">
                    <ItemTemplate>
                           <asp:HiddenField ID="hdPK" runat="server" Value='<%# Eval("Id") %>' />
                           <asp:LinkButton ID="btnEdit" runat="server" OnClick="btnEdit_Click" CausesValidation="false">Edit</asp:LinkButton>
                           &nbsp;&nbsp;
                           <asp:LinkButton ID="btnDelete" runat="server" OnClientClick="return show_confirm();"
                           OnClick="btnDelete_Click">Delete</asp:LinkButton>
                   </ItemTemplate>
                           <HeaderStyle HorizontalAlign="Center" />
                     </asp:TemplateField>

SuggestionRe: linkbutton is not working inside a gridview Pin
Richard MacCutchan22-Jan-15 21:32
mveRichard MacCutchan22-Jan-15 21:32 
AnswerRe: linkbutton is not working inside a gridview Pin
Richard Deeming22-Jan-15 23:27
mveRichard Deeming22-Jan-15 23:27 
QuestionExiting application stopped by validation? Pin
TMattC20-Jan-15 23:45
TMattC20-Jan-15 23:45 
AnswerRe: Exiting application stopped by validation? Pin
Dave Kreskowiak21-Jan-15 2:37
mveDave Kreskowiak21-Jan-15 2:37 
GeneralRe: Exiting application stopped by validation? Pin
TMattC21-Jan-15 4:34
TMattC21-Jan-15 4:34 
AnswerRe: Exiting application stopped by validation? Pin
CHill6021-Jan-15 4:58
mveCHill6021-Jan-15 4:58 
GeneralRe: Exiting application stopped by validation? Pin
TMattC21-Jan-15 21:01
TMattC21-Jan-15 21:01 
GeneralRe: Exiting application stopped by validation? Pin
CHill6021-Jan-15 23:20
mveCHill6021-Jan-15 23:20 
QuestionHow to download the documentation of .NET Framework class libraries Pin
LiTtLe ProGrAMmErS15-Jan-15 7:41
LiTtLe ProGrAMmErS15-Jan-15 7:41 
AnswerRe: How to download the documentation of .NET Framework class libraries Pin
Richard MacCutchan15-Jan-15 8:57
mveRichard MacCutchan15-Jan-15 8:57 
AnswerRe: How to download the documentation of .NET Framework class libraries Pin
Dave Kreskowiak15-Jan-15 10:22
mveDave Kreskowiak15-Jan-15 10:22 
AnswerRe: How to download the documentation of .NET Framework class libraries Pin
deepankarbhatnagar20-Jan-15 20:44
professionaldeepankarbhatnagar20-Jan-15 20:44 
GeneralRe: How to download the documentation of .NET Framework class libraries Pin
Dave Kreskowiak21-Jan-15 2:35
mveDave Kreskowiak21-Jan-15 2:35 
QuestionGet Data From a view in database sql server Pin
eso0o13-Jan-15 23:45
eso0o13-Jan-15 23:45 
SuggestionRe: Get Data From a view in database sql server Pin
Richard MacCutchan14-Jan-15 1:30
mveRichard MacCutchan14-Jan-15 1:30 
AnswerRe: Get Data From a view in database sql server Pin
ZurdoDev15-Jan-15 9:04
professionalZurdoDev15-Jan-15 9:04 
GeneralRe: Get Data From a view in database sql server Pin
eso0o25-Jan-15 21:25
eso0o25-Jan-15 21:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.