Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Generalhi Crystal report Error Pin
wasimsharp5-Dec-07 4:19
wasimsharp5-Dec-07 4:19 
GeneralAccess EventArgs from PageLoad Pin
Mircea Grelus5-Dec-07 3:16
Mircea Grelus5-Dec-07 3:16 
GeneralRe: Access EventArgs from PageLoad Pin
Sathesh Sakthivel5-Dec-07 3:23
Sathesh Sakthivel5-Dec-07 3:23 
GeneralRe: Access EventArgs from PageLoad Pin
Mircea Grelus5-Dec-07 3:31
Mircea Grelus5-Dec-07 3:31 
GeneralRe: Access EventArgs from PageLoad Pin
Sathesh Sakthivel5-Dec-07 3:34
Sathesh Sakthivel5-Dec-07 3:34 
GeneralRe: Access EventArgs from PageLoad Pin
Guffa5-Dec-07 8:16
Guffa5-Dec-07 8:16 
GeneralRe: Access EventArgs from PageLoad Pin
Mircea Grelus5-Dec-07 11:46
Mircea Grelus5-Dec-07 11:46 
Questionhow to fill cells ( one by one ) in GridView through dataset wich is in loop ( one dataset for one cell) Pin
manish.singhal5-Dec-07 2:47
manish.singhal5-Dec-07 2:47 
OleDbDataAdapter Adapter = new OleDbDataAdapter(" SELECT Flight_ID from FlightMaster where DateOfFlight='" + Date() + "' Order By Flight_No", aConnection);
DataSet dst = new DataSet();
Adapter.Fill(dst, "Flight");

for ( i = 0; i < dst.Tables[0].Rows.Count; i++)
{
string flightid = dst.Tables[0].Rows[i].ItemArray[0].ToString();
OleDbDataAdapter Adapter1 = new OleDbDataAdapter(" SELECT Count(BagTag) AS bag1 FROM baggageMaster WHERE Flight_ID=" + flightid + "", aConnection);
DataSet dst1 = new DataSet();
Adapter1.Fill(dst1,"BaggaeMaster");

OleDbDataAdapter Adapter2 = new OleDbDataAdapter(" SELECT Count(BagTag) As bag2 FROM baggageStatus WHERE Flight_ID=" + flightid + "", aConnection);
DataSet dst2 = new DataSet();
Adapter2.Fill(dst2);


allflightGV.DataSource = dst1 + dst2;
allflightGV.DataBind();
}

The code is some like that. 1st dataset will give some values suppose 10 and for loop will run from 0 to 10 . now 2nd and 3rd dataset will give 2 values each time till loop end. I want to insert that 2 values in each row of Gridview. I know this code is not proper . Plz can any one provide me solution to this problem . Thanks to all there .

hi

AnswerRe: how to fill cells ( one by one ) in GridView through dataset wich is in loop ( one dataset for one cell) Pin
Sathesh Sakthivel5-Dec-07 2:54
Sathesh Sakthivel5-Dec-07 2:54 
GeneralButton apperance.. Pin
A AntonySP5-Dec-07 1:17
A AntonySP5-Dec-07 1:17 
GeneralRe: Button apperance.. Pin
Sathesh Sakthivel5-Dec-07 2:05
Sathesh Sakthivel5-Dec-07 2:05 
GeneralRe: Button apperance.. Pin
martin_hughes5-Dec-07 4:59
martin_hughes5-Dec-07 4:59 
Generalproblem in uploading sqlserver db(plzzzzzz help) Pin
M.V5-Dec-07 0:55
M.V5-Dec-07 0:55 
GeneralRe: problem in uploading sqlserver db(plzzzzzz help) Pin
Paddy Boyd5-Dec-07 2:10
Paddy Boyd5-Dec-07 2:10 
GeneralRe: problem in uploading sqlserver db(plzzzzzz help) Pin
M.V5-Dec-07 3:50
M.V5-Dec-07 3:50 
Generalcrystal report refresh manually (urgent) Pin
mharoonkhan5-Dec-07 0:53
mharoonkhan5-Dec-07 0:53 
GeneralRe: crystal report refresh manually (urgent) Pin
Sathesh Sakthivel5-Dec-07 2:32
Sathesh Sakthivel5-Dec-07 2:32 
Generaluploading database(plzzzzzzz help) Pin
M.V5-Dec-07 0:46
M.V5-Dec-07 0:46 
GeneralRe: uploading database(plzzzzzzz help) Pin
Sathesh Sakthivel5-Dec-07 2:19
Sathesh Sakthivel5-Dec-07 2:19 
QuestionPopup window Pin
pmillio5-Dec-07 0:18
pmillio5-Dec-07 0:18 
GeneralGridview Pin
dandamudi padma5-Dec-07 0:09
dandamudi padma5-Dec-07 0:09 
QuestionHow to send the content of the application form to an email? Pin
sanaziuse4-Dec-07 23:39
sanaziuse4-Dec-07 23:39 
GeneralPLz Solve my problem Pin
mohant$.net4-Dec-07 22:31
mohant$.net4-Dec-07 22:31 
GeneralRe: PLz Solve my problem Pin
Malcolm Smart4-Dec-07 23:42
Malcolm Smart4-Dec-07 23:42 
GeneralRe: PLz Solve my problem Pin
mohant$.net5-Dec-07 0:05
mohant$.net5-Dec-07 0:05 

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.