Click here to Skip to main content
15,921,467 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionneed help with Ajax modal popup extender Pin
S.Aijaz30-Mar-10 20:39
S.Aijaz30-Mar-10 20:39 
AnswerRe: need help with Ajax modal popup extender Pin
sashidhar30-Mar-10 23:30
sashidhar30-Mar-10 23:30 
AnswerRe: need help with Ajax modal popup extender Pin
MyDevBank31-Mar-10 9:46
MyDevBank31-Mar-10 9:46 
Questionadd popmenu at run time Pin
Abdul Rahman Hamidy30-Mar-10 20:05
Abdul Rahman Hamidy30-Mar-10 20:05 
AnswerRe: add popmenu at run time Pin
Sandeep Mewara30-Mar-10 20:19
mveSandeep Mewara30-Mar-10 20:19 
GeneralRe: add popmenu at run time Pin
Abdul Rahman Hamidy30-Mar-10 22:38
Abdul Rahman Hamidy30-Mar-10 22:38 
QuestionAutoClose of DivisionTag Window ....... Pin
priyareguri30-Mar-10 18:58
priyareguri30-Mar-10 18:58 
AnswerRe: AutoClose of DivisionTag Window ....... Pin
Sandeep Mewara30-Mar-10 20:16
mveSandeep Mewara30-Mar-10 20:16 
AnswerRe: AutoClose of DivisionTag Window ....... Pin
Arindam Tewary30-Mar-10 21:11
professionalArindam Tewary30-Mar-10 21:11 
Questionhow to databind a adrotator [modified] Pin
ships_agr30-Mar-10 18:33
ships_agr30-Mar-10 18:33 
Questionproblem with datetime datatype of sqlserver 2005 using asp.net Pin
ships_agr30-Mar-10 18:30
ships_agr30-Mar-10 18:30 
AnswerRe: problem with datetime datatype of sqlserver 2005 using asp.net Pin
test-0930-Mar-10 18:49
test-0930-Mar-10 18:49 
AnswerRe: problem with datetime datatype of sqlserver 2005 using asp.net Pin
Arindam Tewary30-Mar-10 19:25
professionalArindam Tewary30-Mar-10 19:25 
AnswerRe: problem with datetime datatype of sqlserver 2005 using asp.net Pin
Dinesh Mani30-Mar-10 20:16
Dinesh Mani30-Mar-10 20:16 
GeneralRe: problem with datetime datatype of sqlserver 2005 using asp.net Pin
ships_agr31-Mar-10 3:50
ships_agr31-Mar-10 3:50 
Questionrepeater control Pin
test-0930-Mar-10 18:26
test-0930-Mar-10 18:26 
AnswerRe: repeater control Pin
Arun Jacob30-Mar-10 20:02
Arun Jacob30-Mar-10 20:02 
GeneralRe: repeater control Pin
test-0930-Mar-10 20:10
test-0930-Mar-10 20:10 
AnswerRe: repeater control Pin
Arun Jacob30-Mar-10 20:12
Arun Jacob30-Mar-10 20:12 
GeneralRe: repeater control Pin
test-0930-Mar-10 20:19
test-0930-Mar-10 20:19 
AnswerRe: repeater control Pin
Arun Jacob30-Mar-10 20:23
Arun Jacob30-Mar-10 20:23 
GeneralRe: repeater control Pin
test-0930-Mar-10 20:46
test-0930-Mar-10 20:46 
im losing the values in textboxs on postback.... i cant check which row im deleting correctly as the values go on postback...

int iddelete;
        iddelete = ToInt(e.CommandArgument.ToString());
        if (iddelete!=0)
        {
            //code....
         }
        else
        {

            int count = e.Item.ItemIndex;
            
           // count = Convert.ToInt32(ViewState["RowNumber"]);
           //DataTable dtdelete = (DataTable)ViewState["CurrentTable"];
          //  count = dtdelete.Rows.Count - 1;
            dtdelete.Rows[count].Delete();
            dtdelete.AcceptChanges();
            Rptdescription.DataSource = dtdelete;
            Rptdescription.DataBind();

           }

AnswerRe: repeater control Pin
Arun Jacob30-Mar-10 20:53
Arun Jacob30-Mar-10 20:53 
GeneralRe: repeater control Pin
test-0930-Mar-10 21:03
test-0930-Mar-10 21:03 
GeneralRe: repeater control Pin
Arindam Tewary30-Mar-10 21:15
professionalArindam Tewary30-Mar-10 21:15 

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.