Click here to Skip to main content
15,905,504 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Security Exception Pin
reogeo20081-Sep-09 6:14
reogeo20081-Sep-09 6:14 
GeneralRe: Security Exception Pin
Vimalsoft(Pty) Ltd1-Sep-09 20:24
professionalVimalsoft(Pty) Ltd1-Sep-09 20:24 
GeneralRe: Security Exception Pin
reogeo20082-Sep-09 2:28
reogeo20082-Sep-09 2:28 
GeneralRe: Security Exception Pin
Vimalsoft(Pty) Ltd2-Sep-09 2:31
professionalVimalsoft(Pty) Ltd2-Sep-09 2:31 
QuestionPosition Of Ajax Combobox listitems? Pin
Pawan Kiran1-Sep-09 0:14
Pawan Kiran1-Sep-09 0:14 
AnswerRe: Position Of Ajax Combobox listitems? Pin
Vimalsoft(Pty) Ltd1-Sep-09 2:28
professionalVimalsoft(Pty) Ltd1-Sep-09 2:28 
QuestionHow To Set TabIndex Inside The Gridview Template Fields? Pin
Pawan Kiran1-Sep-09 0:09
Pawan Kiran1-Sep-09 0:09 
AnswerRe: How To Set TabIndex Inside The Gridview Template Fields? Pin
Pawan Kiran1-Sep-09 0:35
Pawan Kiran1-Sep-09 0:35 
Just set tabindex programatically..
It's solved the issue..

short tabindex = 29;
                        for (int i = 0; i < GridViewMedicineDetails.Rows.Count; i++)
                        {
                              DropDownList DdlMedicine = ((DropDownList)(GridViewMedicineDetails.Rows[i].Cells[1].FindControl("MedicineName")));
                              TextBox box2 = (TextBox)GridViewMedicineDetails.Rows[i].Cells[2].FindControl("Dosage");
                              TextBox box3 = (TextBox)GridViewMedicineDetails.Rows[i].Cells[3].FindControl("Quantity");
                              DdlMedicine.TabIndex = Convert.ToInt16(++tabindex);
                              box2.TabIndex = Convert.ToInt16(++tabindex);
                              box3.TabIndex = Convert.ToInt16(++tabindex);
                        }

But Remember the Gridrow count...
QuestionRe: How To Set TabIndex Inside The Gridview Template Fields? Pin
Thabo Pali25-May-10 23:53
Thabo Pali25-May-10 23:53 
QuestionWhere to start with Sharepoint/ASP.NET development? Pin
krishy1931-Aug-09 23:24
krishy1931-Aug-09 23:24 
QuestionHorizontal scroll bar list box Pin
nikhil123431-Aug-09 23:11
nikhil123431-Aug-09 23:11 
AnswerRe: Horizontal scroll bar list box Pin
Arun Jacob31-Aug-09 23:40
Arun Jacob31-Aug-09 23:40 
QuestionHow to run multiple audio files in asp.net Pin
itsmitm31-Aug-09 21:33
itsmitm31-Aug-09 21:33 
AnswerRe: How to run multiple audio files in asp.net Pin
sashidhar31-Aug-09 21:45
sashidhar31-Aug-09 21:45 
Questionadding image in side a project folder Pin
ritasaumya31-Aug-09 21:14
ritasaumya31-Aug-09 21:14 
AnswerRe: adding image in side a project folder Pin
Coding C#31-Aug-09 21:22
Coding C#31-Aug-09 21:22 
AnswerRe: adding image in side a project folder Pin
Arun Jacob31-Aug-09 21:26
Arun Jacob31-Aug-09 21:26 
AnswerRe: adding image in side a project folder Pin
sashidhar31-Aug-09 21:36
sashidhar31-Aug-09 21:36 
Questionthe two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Ritu_1631-Aug-09 20:55
Ritu_1631-Aug-09 20:55 
AnswerRe: the two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Christian Graus31-Aug-09 21:05
protectorChristian Graus31-Aug-09 21:05 
JokeRe: the two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Arun Jacob31-Aug-09 21:24
Arun Jacob31-Aug-09 21:24 
Questiononscroll event not fire in IE 6 with select box i need to call Javascript on onscroll event Pin
anish27patel31-Aug-09 20:48
anish27patel31-Aug-09 20:48 
QuestionHow to retrieving the binary data from the database? Pin
abglorie31-Aug-09 20:25
abglorie31-Aug-09 20:25 
AnswerRe: How to retrieving the binary data from the database? Pin
Christian Graus31-Aug-09 20:30
protectorChristian Graus31-Aug-09 20:30 
Questionupdate database Pin
mylogics31-Aug-09 20:20
professionalmylogics31-Aug-09 20:20 

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.