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

ASP.NET

 
GeneralRe: not getting +ve value in ExecuteNonQuery() Pin
krishnaveer18-Jan-08 23:22
krishnaveer18-Jan-08 23:22 
GeneralRe: not getting +ve value in ExecuteNonQuery() Pin
Cuckoo18-Jan-08 23:32
Cuckoo18-Jan-08 23:32 
GeneralRe: not getting +ve value in ExecuteNonQuery() Pin
Cuckoo18-Jan-08 23:35
Cuckoo18-Jan-08 23:35 
GeneralRe: not getting +ve value in ExecuteNonQuery() Pin
krishnaveer19-Jan-08 0:05
krishnaveer19-Jan-08 0:05 
Generalunable to assign value in dataset table. Pin
krishnaveer18-Jan-08 22:45
krishnaveer18-Jan-08 22:45 
QuestionHow to create a site in Language rather than English. Pin
coolsatty18-Jan-08 20:24
coolsatty18-Jan-08 20:24 
AnswerRe: How to create a site in Language rather than English. Pin
Michael Sync21-Jan-08 5:01
Michael Sync21-Jan-08 5:01 
GeneralDrop downlist problem Pin
Cuckoo18-Jan-08 19:37
Cuckoo18-Jan-08 19:37 
I am having a dropdrownlist which is getting values from the database.
I want that every time the page is loaded the first item that should be viewed is Select .I tried to set it from property Item and from coding also but i cant get Select in the form

The coding is as follows

private void pop_shift(DropDownList ddl)
{
SqlDataAdapter da = new SqlDataAdapter("select shift_name from shift_add",con);
DataSet Obj_dse = new DataSet();
da.Fill(Obj_dse);
ddl.Items.Add("-Select-");
ddl.DataTextField=Obj_dse.Tables[0].Columns["shift_name"].ToString();
ddl.DataSource=Obj_dse;
ddl.DataBind();
}
GeneralRe: Drop downlist problem [modified] Pin
Venkatesh Mookkan18-Jan-08 20:37
Venkatesh Mookkan18-Jan-08 20:37 
GeneralRe: Drop downlist problem Pin
Cuckoo18-Jan-08 20:42
Cuckoo18-Jan-08 20:42 
GeneralRe: Drop downlist problem Pin
Venkatesh Mookkan18-Jan-08 20:48
Venkatesh Mookkan18-Jan-08 20:48 
GeneralThank You Pin
Cuckoo18-Jan-08 20:50
Cuckoo18-Jan-08 20:50 
GeneralRe: Thank You Pin
Venkatesh Mookkan19-Jan-08 5:19
Venkatesh Mookkan19-Jan-08 5:19 
Generalstyle="display:none;" Pin
I Never Look Behind18-Jan-08 19:25
I Never Look Behind18-Jan-08 19:25 
QuestionOdbc in asp.net Pin
Golden Jing18-Jan-08 15:39
Golden Jing18-Jan-08 15:39 
AnswerRe: Odbc in asp.net Pin
Guffa18-Jan-08 19:13
Guffa18-Jan-08 19:13 
GeneralRe: Odbc in asp.net Pin
Venkatesh Mookkan18-Jan-08 19:22
Venkatesh Mookkan18-Jan-08 19:22 
GeneralRe: Odbc in asp.net Pin
N a v a n e e t h19-Jan-08 1:27
N a v a n e e t h19-Jan-08 1:27 
GeneralIIS 7.0 and .ppt Pin
Civic0618-Jan-08 8:57
Civic0618-Jan-08 8:57 
GeneralRe: IIS 7.0 and .ppt Pin
Mike Ellison18-Jan-08 14:29
Mike Ellison18-Jan-08 14:29 
QuestionUsing C++ Pin
Fernando A. Gomez F.18-Jan-08 7:29
Fernando A. Gomez F.18-Jan-08 7:29 
GeneralRe: Using C++ Pin
pmarfleet18-Jan-08 10:37
pmarfleet18-Jan-08 10:37 
GeneralRe: Using C++ Pin
Fernando A. Gomez F.18-Jan-08 10:46
Fernando A. Gomez F.18-Jan-08 10:46 
Questionhow to add additional fields in UserCreateWizard control in ASP.NET2.0 Pin
Member 473069918-Jan-08 6:40
Member 473069918-Jan-08 6:40 
GeneralRe: how to add additional fields in UserCreateWizard control in ASP.NET2.0 Pin
pmarfleet18-Jan-08 10:35
pmarfleet18-Jan-08 10:35 

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.