Click here to Skip to main content
15,891,431 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsession timeout Pin
samerh12-May-09 19:02
samerh12-May-09 19:02 
AnswerRe: session timeout Pin
Vasudevan Deepak Kumar12-May-09 19:50
Vasudevan Deepak Kumar12-May-09 19:50 
GeneralRe: session timeout Pin
samerh12-May-09 20:06
samerh12-May-09 20:06 
AnswerRe: session timeout Pin
Abhijit Jana12-May-09 19:59
professionalAbhijit Jana12-May-09 19:59 
GeneralRe: session timeout Pin
samerh12-May-09 20:07
samerh12-May-09 20:07 
GeneralRe: session timeout [modified] Pin
Ramesh Swaminathan12-May-09 21:19
Ramesh Swaminathan12-May-09 21:19 
AnswerRe: session timeout Pin
rashmin patel13-May-09 0:21
rashmin patel13-May-09 0:21 
QuestionFetch Parent Gridview Row index on Child gridview delete row ? Pin
zeego12-May-09 18:53
zeego12-May-09 18:53 
Hi I have nested gridviews bounded to data tables. On child gridview delete event I'm trying to fetch the parent gridview row index somehow to fetch the child gridview through find control and databind it to show the updated changes. However I am fetching the the wrond index through my code as its returning the row number of the child and not the parent. Here's my row delete event for the child. OMG | :OMG:

protected void gvSec_RowDeleting(object sender, GridViewDeleteEventArgs e)
{

GridView gvtmp = (GridView)gvComp.Rows[e.RowIndex].FindControl("gvSec");


DataTable tmpdt = (DataTable)ViewState["SecTab"];
if(tmpdt!=null)
{
tmpdt.Rows.RemoveAt(e.RowIndex);
}


gvtmp.DataSource = tmpdt;
gvtmp.DataBind();
ViewState["SecTab"]=tmpdt;

}
AnswerRe: Fetch Parent Gridview Row index on Child gridview delete row ? Pin
Ramesh Swaminathan12-May-09 22:16
Ramesh Swaminathan12-May-09 22:16 
GeneralRe: Fetch Parent Gridview Row index on Child gridview delete row ? Pin
zeego12-May-09 23:02
zeego12-May-09 23:02 
QuestionAny Function like Print_r???? Pin
Yaazi12-May-09 17:58
Yaazi12-May-09 17:58 
AnswerRe: Any Function like Print_r???? Pin
Samer Aburabie12-May-09 20:30
Samer Aburabie12-May-09 20:30 
QuestionASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy Pin
breakoutfoo12-May-09 12:06
breakoutfoo12-May-09 12:06 
AnswerRe: ASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy Pin
breakoutfoo12-May-09 12:27
breakoutfoo12-May-09 12:27 
AnswerRe: ASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy Pin
dotnetmember12-May-09 16:00
dotnetmember12-May-09 16:00 
GeneralRe: ASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy Pin
breakoutfoo17-May-09 8:07
breakoutfoo17-May-09 8:07 
AnswerRe: ASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy Pin
breakoutfoo18-May-09 8:36
breakoutfoo18-May-09 8:36 
QuestionOpen parent window from child window Pin
netJP12L12-May-09 10:10
netJP12L12-May-09 10:10 
AnswerRe: Open parent window from child window Pin
fly90412-May-09 10:20
fly90412-May-09 10:20 
GeneralRe: Open parent window from child window Pin
netJP12L13-May-09 3:41
netJP12L13-May-09 3:41 
GeneralRe: Open parent window from child window Pin
fly90415-May-09 6:20
fly90415-May-09 6:20 
AnswerRe: Open parent window from child window Pin
Yusuf12-May-09 10:21
Yusuf12-May-09 10:21 
QuestionEditing a Word document Pin
dptalt12-May-09 9:17
dptalt12-May-09 9:17 
AnswerRe: Editing a Word document Pin
Christian Graus12-May-09 9:30
protectorChristian Graus12-May-09 9:30 
GeneralRe: Editing a Word document Pin
Ramesh Swaminathan12-May-09 10:08
Ramesh Swaminathan12-May-09 10:08 

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.