Click here to Skip to main content
15,899,026 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to access the objects of the class having textbox and dropDownlist Pin
Spunky Coder7-May-09 2:17
Spunky Coder7-May-09 2:17 
GeneralRe: How to access the objects of the class having textbox and dropDownlist Pin
vishmri7-May-09 18:51
vishmri7-May-09 18:51 
QuestionTrack how many times my file is downlod Pin
farogh haider7-May-09 1:36
farogh haider7-May-09 1:36 
AnswerRe: Track how many times my file is downlod Pin
Herman<T>.Instance7-May-09 4:29
Herman<T>.Instance7-May-09 4:29 
QuestionPage Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 0:30
professionalVimalsoft(Pty) Ltd7-May-09 0:30 
AnswerRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
shenbagasiva7-May-09 4:06
shenbagasiva7-May-09 4:06 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 4:19
professionalVimalsoft(Pty) Ltd7-May-09 4:19 
AnswerRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
newc17-May-09 4:22
newc17-May-09 4:22 
IE 6 behaves differently to IE 7 and above and Mozilla based browsers in respect to block-level element heights. In order to resolve your issue you will need to specify browser specific CSS to cope such as:

/* Style to target IE 6 */
.styleForListWrapper
{
height: 300px;
}

/* Override styles for IE 7 / Mozilla */
html>body .styleForListWrapper
{
height: auto;
min-height: 300px;
}

IE 6 allows block level elements to grow with their content whereas other browsers do not. Therefore specifying the min-hegith property will allow these other browsers to grow as required.

Hope this helps...

Clean code is the key to happiness.

GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 4:25
professionalVimalsoft(Pty) Ltd7-May-09 4:25 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 23:02
professionalVimalsoft(Pty) Ltd7-May-09 23:02 
Questioncredit card validation Pin
jinal_pdoshi7-May-09 0:01
jinal_pdoshi7-May-09 0:01 
AnswerRe: credit card validation Pin
Spunky Coder7-May-09 0:10
Spunky Coder7-May-09 0:10 
AnswerRe: credit card validation Pin
Vasudevan Deepak Kumar7-May-09 22:12
Vasudevan Deepak Kumar7-May-09 22:12 
Questionjava script for user can enter capital alplbets means capital A to Z only in text box. Pin
sanju056-May-09 23:58
sanju056-May-09 23:58 
AnswerRe: java script for user can enter capital alplbets means capital A to Z only in text box. Pin
Spunky Coder7-May-09 0:38
Spunky Coder7-May-09 0:38 
Questionproblem with apple safari Pin
nisha000006-May-09 21:15
nisha000006-May-09 21:15 
AnswerRe: problem with apple safari Pin
SeMartens6-May-09 22:52
SeMartens6-May-09 22:52 
Questionissues Pin
shenbagasiva6-May-09 21:05
shenbagasiva6-May-09 21:05 
AnswerRe: issues Pin
SeMartens7-May-09 0:07
SeMartens7-May-09 0:07 
AnswerRe: issues Pin
Vasudevan Deepak Kumar7-May-09 22:14
Vasudevan Deepak Kumar7-May-09 22:14 
QuestionMousedown event Pin
devvvy6-May-09 21:02
devvvy6-May-09 21:02 
QuestionFocus is going on address bar Pin
Jagz W6-May-09 20:44
professionalJagz W6-May-09 20:44 
AnswerRe: Focus is going on address bar Pin
mr_muskurahat6-May-09 21:04
mr_muskurahat6-May-09 21:04 
GeneralRe: Focus is going on address bar Pin
Jagz W7-May-09 0:23
professionalJagz W7-May-09 0:23 
QuestionASP.NET Exception ex.ToString to be available from browser? Pin
devvvy6-May-09 20:22
devvvy6-May-09 20:22 

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.