Click here to Skip to main content
15,925,444 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSetting mouse over & mouse out event for each item in a DropDownList in asp.net Pin
248912821-Jan-07 23:05
248912821-Jan-07 23:05 
QuestionCalender control validation in javascript Pin
VaibhavTiparadi21-Jan-07 22:43
VaibhavTiparadi21-Jan-07 22:43 
QuestionAttaching Crystal Report Data as an attachment to the SMTP Mail Pin
Vijay_Patil21-Jan-07 21:22
Vijay_Patil21-Jan-07 21:22 
QuestionDatatables Pin
chohanpk21-Jan-07 20:36
chohanpk21-Jan-07 20:36 
AnswerRe: Datatables Pin
Jon Sagara21-Jan-07 20:43
Jon Sagara21-Jan-07 20:43 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 20:46
chohanpk21-Jan-07 20:46 
GeneralRe: Datatables Pin
enjoycrack21-Jan-07 20:55
enjoycrack21-Jan-07 20:55 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 21:01
chohanpk21-Jan-07 21:01 
yes alredy no table exist i nnorthwind with this name.
but with this command i m creating new table n also create columns n rows and add data in it.

DataTable dt = new DataTable("tblcheck");
DataColumn dc1=new DataColumn("col1",typeof(int));
dt.Columns.Add(dc1);

DataColumn dc2=new DataColumn("col2",typeof(int));
dt.Columns.Add(dc2);


DataRow dr1 = dt.NewRow();
dr1["col1"]=1;
dr1["col2"]=2;
dt.Rows.Add(dr1);

SqlDataAdapter adp2 = new SqlDataAdapter("select * from tblcheck", con);
adp2.Fill(ds, "tblcheck");
GridView1.DataSource = ds;
GridView1.DataBind();

Chohan

GeneralRe: Datatables Pin
enjoycrack21-Jan-07 21:15
enjoycrack21-Jan-07 21:15 
GeneralRe: Datatables Pin
Christian Graus21-Jan-07 21:50
protectorChristian Graus21-Jan-07 21:50 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 22:22
chohanpk21-Jan-07 22:22 
GeneralRe: Datatables Pin
Christian Graus21-Jan-07 22:35
protectorChristian Graus21-Jan-07 22:35 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 22:39
chohanpk21-Jan-07 22:39 
GeneralRe: Datatables Pin
Christian Graus21-Jan-07 22:44
protectorChristian Graus21-Jan-07 22:44 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 22:52
chohanpk21-Jan-07 22:52 
GeneralRe: Datatables Pin
Christian Graus21-Jan-07 23:04
protectorChristian Graus21-Jan-07 23:04 
GeneralRe: Datatables Pin
chohanpk22-Jan-07 0:22
chohanpk22-Jan-07 0:22 
GeneralRe: Datatables Pin
Christian Graus22-Jan-07 0:27
protectorChristian Graus22-Jan-07 0:27 
GeneralRe: Datatables Pin
chohanpk22-Jan-07 0:46
chohanpk22-Jan-07 0:46 
GeneralRe: Datatables Pin
Christian Graus22-Jan-07 1:06
protectorChristian Graus22-Jan-07 1:06 
QuestionHow to sort gridview in c#.Net Pin
aaraaayen21-Jan-07 20:32
aaraaayen21-Jan-07 20:32 
JokeRe: How to sort gridview in c#.Net Pin
enjoycrack21-Jan-07 20:48
enjoycrack21-Jan-07 20:48 
AnswerRe: How to sort gridview in c#.Net Pin
enjoycrack21-Jan-07 20:53
enjoycrack21-Jan-07 20:53 
GeneralRe: How to sort gridview in c#.Net Pin
aaraaayen21-Jan-07 23:07
aaraaayen21-Jan-07 23:07 
QuestionUserControl Pin
AnhTin21-Jan-07 20:31
AnhTin21-Jan-07 20:31 

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.