Click here to Skip to main content
15,916,091 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Progress bar , Help Needed Pin
Not Active27-Jan-10 3:41
mentorNot Active27-Jan-10 3:41 
AnswerRe: Progress bar , Help Needed [modified] Pin
Prosanta Kundu online27-Jan-10 17:08
Prosanta Kundu online27-Jan-10 17:08 
GeneralRe: Progress bar , Help Needed Pin
Hema Bairavan27-Jan-10 17:46
Hema Bairavan27-Jan-10 17:46 
Questiondatalist events not firing Pin
praveenkumar_vittaboina27-Jan-10 3:10
praveenkumar_vittaboina27-Jan-10 3:10 
QuestionProgramatically creating dataset Pin
vineesh v27-Jan-10 1:36
vineesh v27-Jan-10 1:36 
AnswerRe: Programatically creating dataset Pin
Not Active27-Jan-10 2:01
mentorNot Active27-Jan-10 2:01 
Questiondropdown Pin
arkiboys27-Jan-10 0:27
arkiboys27-Jan-10 0:27 
GeneralRe: dropdown Pin
J a a n s27-Jan-10 1:07
professionalJ a a n s27-Jan-10 1:07 
You are trying to replace the text instead of selecting the required one.
You have to find the correct list item using the method FindItemByText or FindItemByValue of DropDownand then Select it.
ListItem item;
ddl.SelectedIndex = -1;
item = ddl.Items.FindByText("hello");
if (item != null) item.Selected = true;



GeneralRe: dropdown Pin
Shivendra Pandey27-Jan-10 1:08
Shivendra Pandey27-Jan-10 1:08 
GeneralRe: dropdown Pin
Not Active27-Jan-10 2:03
mentorNot Active27-Jan-10 2:03 
GeneralRe: dropdown Pin
arkiboys27-Jan-10 10:01
arkiboys27-Jan-10 10:01 
AnswerRe: dropdown Pin
DJ Matthews27-Jan-10 10:20
DJ Matthews27-Jan-10 10:20 
GeneralRe: dropdown Pin
arkiboys27-Jan-10 21:46
arkiboys27-Jan-10 21:46 
Questiondocument.selection - not working in firefox Pin
sekannak27-Jan-10 0:21
sekannak27-Jan-10 0:21 
AnswerRe: document.selection - not working in firefox Pin
Prosanta Kundu online27-Jan-10 17:15
Prosanta Kundu online27-Jan-10 17:15 
GeneralRe: document.selection - not working in firefox Pin
sekannak27-Jan-10 17:56
sekannak27-Jan-10 17:56 
GeneralRe: document.selection - not working in firefox Pin
Prosanta Kundu online27-Jan-10 18:11
Prosanta Kundu online27-Jan-10 18:11 
GeneralRe: document.selection - not working in firefox Pin
sekannak27-Jan-10 18:52
sekannak27-Jan-10 18:52 
GeneralRe: document.selection - not working in firefox [modified] Pin
Prosanta Kundu online27-Jan-10 22:50
Prosanta Kundu online27-Jan-10 22:50 
GeneralRe: document.selection - not working in firefox Pin
sekannak28-Jan-10 17:41
sekannak28-Jan-10 17:41 
QuestionWebPartZone Layout Orientation Pin
NTheOne26-Jan-10 22:40
NTheOne26-Jan-10 22:40 
Questioncould not access hiddenfield Pin
bhavna432126-Jan-10 22:28
bhavna432126-Jan-10 22:28 
AnswerRe: could not access hiddenfield Pin
Dinesh Mani26-Jan-10 22:54
Dinesh Mani26-Jan-10 22:54 
GeneralRe: could not access hiddenfield Pin
bhavna432126-Jan-10 23:05
bhavna432126-Jan-10 23:05 
GeneralRe: could not access hiddenfield Pin
Dinesh Mani26-Jan-10 23:26
Dinesh Mani26-Jan-10 23:26 

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.