Click here to Skip to main content
16,005,178 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Session Object!! Pin
Yusuf8-Apr-09 5:45
Yusuf8-Apr-09 5:45 
GeneralRe: Session Object!! Pin
Sr...Frank8-Apr-09 6:20
Sr...Frank8-Apr-09 6:20 
QuestionShow Image on webpage Pin
Deresen8-Apr-09 4:07
Deresen8-Apr-09 4:07 
AnswerRe: Show Image on webpage Pin
Abhishek Sur8-Apr-09 5:27
professionalAbhishek Sur8-Apr-09 5:27 
GeneralRe: Show Image on webpage Pin
Deresen8-Apr-09 5:34
Deresen8-Apr-09 5:34 
GeneralRe: Show Image on webpage Pin
Abhishek Sur8-Apr-09 21:10
professionalAbhishek Sur8-Apr-09 21:10 
AnswerRe: Show Image on webpage Pin
Yusuf8-Apr-09 5:31
Yusuf8-Apr-09 5:31 
Questionasp.net 2.0+updatepanel+gridview Pin
Pawan Kiran8-Apr-09 3:53
Pawan Kiran8-Apr-09 3:53 
I have a gridview inside updatepanel and i bind gridview at runtime.
i want to edit the cell value of gridview(i.e i want TextBox1 in that cell to edit the value).
so i wrote code as

protected void GvAttendenceMonthlyInside_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[5].Controls.Add(new TextBox());
}
}

here problem comes.,
i want to capture the value of edited cell.

i wrote code in Button1_Click() as

for (int ee = 0; ee < GvAttendenceMonthlyInside.Rows.Count-1; ee++)
{
string dayspresent = string.Empty;
if (!string.IsNullOrEmpty(GvAttendenceMonthlyInside.Rows[ee].Cells[5].Text.ToString()))
{
if (GvAttendenceMonthlyInside.Rows[ee].Cells[5].Text=="&nbsp;")
{
dayspresent = dayspresent + GvAttendenceMonthlyInside.Rows[ee].Cells[5].Text + "|";
}
}
else
{
if (string.IsNullOrEmpty(dayspresent))
{
dayspresent=dayspresent;
}
}
ViewState["dayspresent"] = dayspresent;
}

i pass the ViewState["dayspresent"] as one parameter value to my insert_procedure,but it is always taking "" into it.
plz plz help me in this issue
AnswerRe: asp.net 2.0+updatepanel+gridview Pin
Abhijit Jana8-Apr-09 5:50
professionalAbhijit Jana8-Apr-09 5:50 
GeneralRe: asp.net 2.0+updatepanel+gridview Pin
Pawan Kiran8-Apr-09 20:42
Pawan Kiran8-Apr-09 20:42 
QuestionPlay sound on a remote server Pin
Member 30689518-Apr-09 3:16
Member 30689518-Apr-09 3:16 
AnswerRe: Play sound on a remote server Pin
Yusuf8-Apr-09 5:38
Yusuf8-Apr-09 5:38 
Question[Urgent] Network Access Message: The page cannot be displayed Pin
hardikr.shah8-Apr-09 3:06
hardikr.shah8-Apr-09 3:06 
AnswerRe: [Urgent] Network Access Message: The page cannot be displayed Pin
Yusuf8-Apr-09 5:35
Yusuf8-Apr-09 5:35 
QuestionUser Search Control using Ajax Pin
jayraj todkar8-Apr-09 2:36
jayraj todkar8-Apr-09 2:36 
AnswerRe: User Search Control using Ajax Pin
danico4912-Aug-09 14:18
danico4912-Aug-09 14:18 
Question[Message Deleted] Pin
sahoo.fm8-Apr-09 1:33
sahoo.fm8-Apr-09 1:33 
AnswerRe: ajax controls Pin
Rajeesh MP8-Apr-09 1:58
Rajeesh MP8-Apr-09 1:58 
AnswerRe: ajax controls Pin
Yusuf8-Apr-09 5:36
Yusuf8-Apr-09 5:36 
GeneralRe: ajax controls Pin
Abhijit Jana8-Apr-09 5:37
professionalAbhijit Jana8-Apr-09 5:37 
QuestionHow to remove assciation of .Net 2008 Web page application from VSS Pin
nilam24778-Apr-09 0:53
nilam24778-Apr-09 0:53 
AnswerRe: How to remove assciation of .Net 2008 Web page application from VSS Pin
VijayVishwakarma8-Apr-09 1:06
VijayVishwakarma8-Apr-09 1:06 
AnswerRe: How to remove assciation of .Net 2008 Web page application from VSS Pin
Abhijit Jana8-Apr-09 1:18
professionalAbhijit Jana8-Apr-09 1:18 
QuestionRe: How to remove assciation of .Net 2008 Web page application from VSS Pin
nilam24778-Apr-09 2:51
nilam24778-Apr-09 2:51 
AnswerRe: How to remove assciation of .Net 2008 Web page application from VSS Pin
Abhijit Jana8-Apr-09 3:58
professionalAbhijit Jana8-Apr-09 3:58 

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.