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

.NET (Core and Framework)

 
AnswerRe: Infinite recursion wont go away. Pin
Dave Kreskowiak13-Feb-11 15:38
mveDave Kreskowiak13-Feb-11 15:38 
AnswerRe: Infinite recursion wont go away. Pin
Luc Pattyn14-Feb-11 1:10
sitebuilderLuc Pattyn14-Feb-11 1:10 
JokeRe: Infinite recursion wont go away. Pin
musefan14-Feb-11 5:15
musefan14-Feb-11 5:15 
GeneralRe: Infinite recursion wont go away. Pin
Henry Minute14-Feb-11 5:24
Henry Minute14-Feb-11 5:24 
JokeRe: Infinite recursion wont go away. Pin
musefan14-Feb-11 5:44
musefan14-Feb-11 5:44 
GeneralRe: Infinite recursion wont go away. Pin
Henry Minute14-Feb-11 5:49
Henry Minute14-Feb-11 5:49 
GeneralRe: Infinite recursion wont go away. Pin
musefan14-Feb-11 6:04
musefan14-Feb-11 6:04 
QuestionClick on the hyperlink and become an alert icon and also save to database Pin
Peggie199013-Feb-11 12:53
Peggie199013-Feb-11 12:53 
Hi, I have a requirment that allows user to insert new records at the end of the footer.
My database table contains all these:
termsID int
terms varchar
defaultValue varchar
actualValue varchar
reasonForDeviation varchar
alert varchar
contractID varchar


In one of the column, known as Alert, it is a hyperlink such that user is able to click on the 'Set Alert' hyperlink and it will becomes an alert icon. After all the necessary into such as: Terms, Default value, Actual Value, Reason For deviation, alert(set hyperlink) and contract ID is filled in. User is able to click on the Add New link to set the it to become an alert icon.After the records is inserted, user is able to view the details and in the alert columnm, the hyperlink is changed to an alert icon. I am not sure of how to code out for it. This is my business logic:
protected void gvCriticalTerms_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            if (e.CommandName.Equals("AddNew"))
            {



                //TextBox txtTermsID = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtTermsID");txtTermsID.Text
                TextBox txtTerms = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtTerms");
                TextBox txtDefaultValue = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtDefaultValue");
                TextBox txtActualValue = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtActualValue");
                TextBox txtReasonForDeviation = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtReasonForDeviation");
                TextBox txtAlert = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtAlert");
                TextBox txtContractID = (TextBox)gvCriticalTerms.FooterRow.FindControl("txtContractID");



                vrmdb.Insert_CriticalTermsRecords(txtTerms.Text, txtDefaultValue.Text, txtActualValue.Text, txtReasonForDeviation.Text, txtAlert.Text, txtContractID.Text);
                BindGrid();
                Response.Redirect("ContractThreeGridView.aspx");

            }
        }

Thanks!Hope to hear from u soon!
QuestionHow to Detect Music Device Pin
Pranit Kothari11-Feb-11 19:15
Pranit Kothari11-Feb-11 19:15 
AnswerRe: How to Detect Music Device - Repost Pin
Richard MacCutchan11-Feb-11 21:10
mveRichard MacCutchan11-Feb-11 21:10 
QuestionsessionState Pin
MWRivera11-Feb-11 6:43
MWRivera11-Feb-11 6:43 
AnswerRe: sessionState Pin
Not Active11-Feb-11 8:54
mentorNot Active11-Feb-11 8:54 
GeneralRe: sessionState Pin
MWRivera11-Feb-11 9:03
MWRivera11-Feb-11 9:03 
GeneralRe: sessionState Pin
Not Active11-Feb-11 10:14
mentorNot Active11-Feb-11 10:14 
GeneralRe: sessionState Pin
MWRivera11-Feb-11 10:22
MWRivera11-Feb-11 10:22 
GeneralRe: sessionState Pin
Pete O'Hanlon11-Feb-11 11:38
mvePete O'Hanlon11-Feb-11 11:38 
GeneralRe: sessionState Pin
MWRivera12-Feb-11 7:41
MWRivera12-Feb-11 7:41 
GeneralRe: sessionState Pin
Pete O'Hanlon12-Feb-11 9:16
mvePete O'Hanlon12-Feb-11 9:16 
GeneralRe: sessionState Pin
MWRivera12-Feb-11 10:35
MWRivera12-Feb-11 10:35 
GeneralRe: sessionState Pin
MWRivera11-Feb-11 11:25
MWRivera11-Feb-11 11:25 
AnswerRe: sessionState Pin
Shameel13-Feb-11 8:10
professionalShameel13-Feb-11 8:10 
QuestionHow can Remoting Obj Uri be gernated at runtime at subscriber's end? Pin
glitteringsound9-Feb-11 4:44
glitteringsound9-Feb-11 4:44 
QuestionGeneric class with reference to another generic class Pin
lukeer9-Feb-11 3:47
lukeer9-Feb-11 3:47 
AnswerRe: Generic class with reference to another generic class Pin
Manfred Rudolf Bihy9-Feb-11 4:13
professionalManfred Rudolf Bihy9-Feb-11 4:13 
AnswerRe: Generic class with reference to another generic class Pin
Dave Kreskowiak9-Feb-11 4:16
mveDave Kreskowiak9-Feb-11 4:16 

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.