Click here to Skip to main content
15,917,174 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.NET web shop Pin
Hristiyan24-Mar-09 11:55
Hristiyan24-Mar-09 11:55 
AnswerRe: ASP.NET web shop Pin
Yusuf24-Mar-09 12:32
Yusuf24-Mar-09 12:32 
AnswerRe: ASP.NET web shop Pin
Hristiyan24-Mar-09 13:28
Hristiyan24-Mar-09 13:28 
GeneralRe: ASP.NET web shop Pin
Yusuf24-Mar-09 14:05
Yusuf24-Mar-09 14:05 
GeneralRe: ASP.NET web shop Pin
Colin Angus Mackay24-Mar-09 14:24
Colin Angus Mackay24-Mar-09 14:24 
GeneralRe: ASP.NET web shop Pin
Yusuf24-Mar-09 14:40
Yusuf24-Mar-09 14:40 
GeneralRe: ASP.NET web shop Pin
N a v a n e e t h24-Mar-09 16:06
N a v a n e e t h24-Mar-09 16:06 
GeneralRe: ASP.NET web shop Pin
Hristiyan24-Mar-09 20:33
Hristiyan24-Mar-09 20:33 
QuestionFile has changed Pin
CodingYoshi24-Mar-09 10:30
CodingYoshi24-Mar-09 10:30 
QuestionHelp needed for online plagiarism detection Pin
dream_liner_7e724-Mar-09 10:18
dream_liner_7e724-Mar-09 10:18 
AnswerRe: Help needed for online plagiarism detection Pin
Christian Graus24-Mar-09 14:26
protectorChristian Graus24-Mar-09 14:26 
GeneralRe: Help needed for online plagiarism detection Pin
dream_liner_7e725-Mar-09 2:38
dream_liner_7e725-Mar-09 2:38 
QuestionASP:Dropdownlist And Firefox Pin
Ryan Fleming24-Mar-09 8:13
Ryan Fleming24-Mar-09 8:13 
I have an ASP web application. with three asp:dropdownslists. The lists work fine in IE, but when on Firefox (v3.0.7), I can not gain focus on the control with the mouse. I can however tab onto the controls, and use the arrow keys to select focus. I can't get the list to "drop down" even when using the keyboard. Any one have any ideas?

Code For one of the drop downs is......


**********************************************************************************************************************


<asp:dropdownlist id="cmbRaceDates" runat="server" autopostback="True" xmlns:asp="#unknown">



VB Code
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
getRaceDate()
End Sub


Private Sub getRaceDate()

Try
cmbRaceDates.Items.Clear()
cmbRaceDates.Items.Add("Please Select A Race Date")

While Reader.Read
cmbRaceDates.Items.Add(Value To Be Displayed)
End While
cmbRaceDates.Visible = True
Catch ex As Exception
System.Diagnostics.Debug.Write(ex.Message())
Finally

End Try
End If
End Sub

Protected Sub cmbRaceDates_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmbRaceDates.SelectedIndexChanged
Do Stuff
end sub


**********************************************************************************************************************


Any Help would be greatly appreciated!

Ryan


AnswerRe: ASP:Dropdownlist And Firefox Pin
Christian Graus24-Mar-09 14:27
protectorChristian Graus24-Mar-09 14:27 
Question[Message Deleted] Pin
nerzhul8624-Mar-09 8:12
nerzhul8624-Mar-09 8:12 
AnswerRe: asp.net-how to traverse records Pin
Fayu24-Mar-09 10:28
Fayu24-Mar-09 10:28 
QuestionHow to add gridview to placeholder Pin
scjsb24-Mar-09 8:06
scjsb24-Mar-09 8:06 
AnswerRe: How to add gridview to placeholder Pin
Cybernate24-Mar-09 10:18
Cybernate24-Mar-09 10:18 
GeneralRe: How to add gridview to placeholder Pin
scjsb25-Mar-09 3:12
scjsb25-Mar-09 3:12 
QuestionStandard pattern for updating a tab in one click? Pin
alex3_1424-Mar-09 6:50
alex3_1424-Mar-09 6:50 
AnswerRe: Standard pattern for updating a tab in one click? Pin
fred_24-Mar-09 9:51
fred_24-Mar-09 9:51 
QuestionRe: Standard pattern for updating a tab in one click? Pin
alex3_1424-Mar-09 22:22
alex3_1424-Mar-09 22:22 
AnswerRe: Standard pattern for updating a tab in one click? [modified] Pin
fred_25-Mar-09 2:51
fred_25-Mar-09 2:51 
QuestionRe: Standard pattern for updating a tab in one click? Pin
alex3_1425-Mar-09 3:52
alex3_1425-Mar-09 3:52 
GeneralRe: Standard pattern for updating a tab in one click? Pin
fred_25-Mar-09 3:57
fred_25-Mar-09 3:57 

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.