Click here to Skip to main content
16,004,901 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Runtime error Pin
Richard Jones4-Oct-07 2:16
Richard Jones4-Oct-07 2:16 
QuestionSession Time out Expire problem [modified] Pin
kirtiarora4-Oct-07 1:13
kirtiarora4-Oct-07 1:13 
QuestionProblem with table positioning Pin
Zoltan Aszalos4-Oct-07 1:02
Zoltan Aszalos4-Oct-07 1:02 
AnswerRe: Problem with table positioning Pin
Paddy Boyd4-Oct-07 1:05
Paddy Boyd4-Oct-07 1:05 
Questiontextbox management in asp.net Pin
haripriyach4-Oct-07 0:53
haripriyach4-Oct-07 0:53 
AnswerRe: textbox management in asp.net Pin
Christian Graus4-Oct-07 1:19
protectorChristian Graus4-Oct-07 1:19 
QuestionSQL Query Parent-Child data within same table. Pin
-- Abhi --4-Oct-07 0:44
-- Abhi --4-Oct-07 0:44 
AnswerRe: SQL Query Parent-Child data within same table. Pin
varshavmane4-Oct-07 0:57
varshavmane4-Oct-07 0:57 
Just fire a query on ur datatable saying:

DataRow[] foundParent ;
foundParent = dt.Select("ParentID = 1");
if (foundParent.GetUpperBound(0) > 0)
{
for (Int32 intRowCnt = 0; intRowCnt <= foundParent.GetUpperBound(0); intRowCnt++)
{
foundChild = dt.Select("ParentID=" + foundParent[intRowCnt]["ChildID"]);

if (foundChild.GetUpperBound(0) > 0)
{
//Do something
}
for (intColCnt = 0; intColCnt <= dt.Columns.Count - 1; intColCnt++)
{
//Do something
}
}
and write this in for loop.
GeneralRe: SQL Query Parent-Child data within same table. Pin
-- Abhi --4-Oct-07 1:08
-- Abhi --4-Oct-07 1:08 
GeneralRe: SQL Query Parent-Child data within same table. Pin
varshavmane4-Oct-07 1:12
varshavmane4-Oct-07 1:12 
AnswerRe: SQL Query Parent-Child data within same table. Pin
codeproject_Tarun4-Oct-07 2:08
codeproject_Tarun4-Oct-07 2:08 
Questionalertbox in web appln Pin
Priya S4-Oct-07 0:42
Priya S4-Oct-07 0:42 
AnswerRe: alertbox in web appln Pin
sulabh20204-Oct-07 0:47
sulabh20204-Oct-07 0:47 
AnswerRe: alertbox in web appln Pin
Paras Kaneriya4-Oct-07 0:54
Paras Kaneriya4-Oct-07 0:54 
AnswerRe: alertbox in web appln Pin
sulabh20204-Oct-07 1:01
sulabh20204-Oct-07 1:01 
GeneralRe: alertbox in web appln Pin
Priya S4-Oct-07 1:06
Priya S4-Oct-07 1:06 
GeneralRe: alertbox in web appln Pin
varshavmane4-Oct-07 1:20
varshavmane4-Oct-07 1:20 
AnswerRe: alertbox in web appln Pin
bhavesh31844-Oct-07 2:19
bhavesh31844-Oct-07 2:19 
QuestionDisplay Varbinary<MAX) Image in DataGrid or an Image on a DataList Template Pin
RichardContact-14-Oct-07 0:26
RichardContact-14-Oct-07 0:26 
AnswerRe: Display Varbinary<MAX) Image in DataGrid or an Image on a DataList Template Pin
Christian Graus4-Oct-07 0:38
protectorChristian Graus4-Oct-07 0:38 
QuestionWhy do I get this error everytime when running my application?? Pin
varshavmane4-Oct-07 0:26
varshavmane4-Oct-07 0:26 
AnswerRe: Why do I get this error everytime when running my application?? Pin
Christian Graus4-Oct-07 0:39
protectorChristian Graus4-Oct-07 0:39 
GeneralRe: Why do I get this error everytime when running my application?? Pin
varshavmane4-Oct-07 0:40
varshavmane4-Oct-07 0:40 
GeneralRe: Why do I get this error everytime when running my application?? Pin
Christian Graus4-Oct-07 0:49
protectorChristian Graus4-Oct-07 0:49 
QuestionHow To display data in gridview in Summarized view Pin
codeproject_Tarun4-Oct-07 0:04
codeproject_Tarun4-Oct-07 0:04 

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.