Click here to Skip to main content
15,920,688 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problems in master page! Pin
Sandeep Akhare10-Sep-07 19:30
Sandeep Akhare10-Sep-07 19:30 
QuestionPopup Window in FireFox Pin
Mahesh.J10-Sep-07 18:07
Mahesh.J10-Sep-07 18:07 
AnswerRe: Popup Window in FireFox Pin
Sandeep Akhare10-Sep-07 19:44
Sandeep Akhare10-Sep-07 19:44 
QuestionExprot to Word Is Error Pin
AnhTin10-Sep-07 17:06
AnhTin10-Sep-07 17:06 
QuestionDataset in ap.net2.0 Pin
dhulipudi10-Sep-07 16:28
dhulipudi10-Sep-07 16:28 
AnswerRe: Dataset in ap.net2.0 Pin
Sandeep Akhare10-Sep-07 19:48
Sandeep Akhare10-Sep-07 19:48 
GeneralRe: Dataset in ap.net2.0 Pin
dhulipudi10-Sep-07 19:52
dhulipudi10-Sep-07 19:52 
AnswerRe: Dataset in ap.net2.0 Pin
varshavmane10-Sep-07 20:19
varshavmane10-Sep-07 20:19 
May be some what like this u can try:
Here I have dataset ds which has some records and I need delete some of them form the output of the Query and use the updated dataset ds.


DataRow objDR;
foreach (DataRow dr in ds.Tables[0].Rows)
{
DataSet ds1 = new DataSet();

cmd1.CommandText = ""; //My Query
SqlDataAdapter adpt2 = new SqlDataAdapter(cmd1);
adpt2.Fill(ds1);
if (ds1.Tables[0].Rows.Count <= 0)
{
dr.Delete();
}
else
{
objDR = objDT.NewRow();
}
ds1.Clear();
}

adpt.Update(ds);
ds.AcceptChanges();

Hope this helps u??
GeneralRe: Dataset in ap.net2.0 Pin
dhulipudi10-Sep-07 20:37
dhulipudi10-Sep-07 20:37 
QuestionHow to improve the efficiency when search data from more than 1000000 records? Pin
guiqul16310-Sep-07 15:30
guiqul16310-Sep-07 15:30 
QuestioniCalendar and asp.net Pin
camby7510-Sep-07 12:08
camby7510-Sep-07 12:08 
QuestionGridView, set parameters in HyperLinkField's NavigateUrl Pin
ctlqt1210-Sep-07 7:40
ctlqt1210-Sep-07 7:40 
AnswerRe: GridView, set parameters in HyperLinkField's NavigateUrl Pin
Parwej Ahamad10-Sep-07 17:45
professionalParwej Ahamad10-Sep-07 17:45 
QuestionGridView C# - How to get Image to be selector [modified] Pin
Bricerice210-Sep-07 7:27
Bricerice210-Sep-07 7:27 
QuestionHow to print a flat file in ASP.NET 2.0 Pin
jose.lobo10-Sep-07 6:57
jose.lobo10-Sep-07 6:57 
QuestionHow to add dynamically dropdown list for GridView Pin
haroon198010-Sep-07 5:41
haroon198010-Sep-07 5:41 
AnswerRe: How to add dynamically dropdown list for GridView Pin
Sandeep Akhare10-Sep-07 19:33
Sandeep Akhare10-Sep-07 19:33 
QuestionCapturing Page Errors using Master Pages C# Pin
But_Im_a_Lady10-Sep-07 4:50
But_Im_a_Lady10-Sep-07 4:50 
Answer[Off Topic] Little Britain Pin
Colin Angus Mackay10-Sep-07 6:16
Colin Angus Mackay10-Sep-07 6:16 
GeneralRe: [Off Topic] Little Britain Pin
Christian Graus10-Sep-07 6:33
protectorChristian Graus10-Sep-07 6:33 
GeneralRe: [Off Topic] Little Britain Pin
But_Im_a_Lady10-Sep-07 21:29
But_Im_a_Lady10-Sep-07 21:29 
AnswerRe: Capturing Page Errors using Master Pages C# Pin
Christian Graus10-Sep-07 6:34
protectorChristian Graus10-Sep-07 6:34 
QuestionASP newbie question! Pin
Lord_Veralix10-Sep-07 4:20
Lord_Veralix10-Sep-07 4:20 
AnswerRe: ASP newbie question! Pin
Guffa10-Sep-07 6:23
Guffa10-Sep-07 6:23 
AnswerRe: ASP newbie question! Pin
Christian Graus10-Sep-07 6:32
protectorChristian Graus10-Sep-07 6:32 

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.