Click here to Skip to main content
15,909,332 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP.net forum URGENTLY NEEDED!!! Pin
Vasudevan Deepak Kumar26-Oct-08 10:23
Vasudevan Deepak Kumar26-Oct-08 10:23 
AnswerRe: ASP.net forum URGENTLY NEEDED!!! Pin
Vasudevan Deepak Kumar26-Oct-08 10:21
Vasudevan Deepak Kumar26-Oct-08 10:21 
AnswerCP IGNORE USER Pin
leckey26-Oct-08 12:13
leckey26-Oct-08 12:13 
Questionrepeater header template not displayed on webpage Pin
Ravikumar.Y25-Oct-08 9:52
Ravikumar.Y25-Oct-08 9:52 
AnswerRe: repeater header template not displayed on webpage Pin
Ravikumar.Y25-Oct-08 23:04
Ravikumar.Y25-Oct-08 23:04 
QuestionAjax timer in gridview. Pin
VijayVishwakarma25-Oct-08 9:34
VijayVishwakarma25-Oct-08 9:34 
QuestionCSS working in IE7 but Not in firefox 2 Pin
AlexeiXX325-Oct-08 7:54
AlexeiXX325-Oct-08 7:54 
AnswerRe: CSS working in IE7 but Not in firefox 2 Pin
Guffa25-Oct-08 17:11
Guffa25-Oct-08 17:11 
As always when there is a difference in the rendering between Firefox and Internet Explorer, Firefox renders the code correctly, and Internet Explorer renders it incorrectly.

As you only have floating elements in the #container element, there is nothing that gives it any height. As the height becomes zero, you don't see the background image.

There is a rendering error in Internet Explorer that makes the #container element grow to the size of it's children, eventhough they are all floating elements and should not affect the size of the parent.

Specify a height for the #container element, of put a clearing div after the three others. You can use this style for the clearing div:

.Clear {
clear: both;
height: 0;
overflow: hidden;
}

Specifying the overflow is needed because of another rendering bug in IE. Without it, IE will always make the element at least one character high, even if you specify a smaller height.

Despite everything, the person most likely to be fooling you next is yourself.

GeneralRe: CSS working in IE7 but Not in firefox 2 Pin
AlexeiXX326-Oct-08 17:24
AlexeiXX326-Oct-08 17:24 
GeneralRe: CSS working in IE7 but Not in firefox 2 Pin
Guffa26-Oct-08 23:28
Guffa26-Oct-08 23:28 
QuestionCreating XMLFile in Asp.net How to format the output Pin
zjaffary25-Oct-08 3:13
zjaffary25-Oct-08 3:13 
GeneralData in Gridview ASP .Net on button click event Pin
Shazz Rock25-Oct-08 2:34
Shazz Rock25-Oct-08 2:34 
GeneralRe: Data in Gridview ASP .Net on button click event Pin
NetMan201225-Oct-08 2:48
NetMan201225-Oct-08 2:48 
QuestionWhat is web.config if we are using multiple languges in a website? Pin
NetMan201225-Oct-08 2:20
NetMan201225-Oct-08 2:20 
QuestionHow to use DropDownList with C#.NET Pin
mghiassi24-Oct-08 23:59
mghiassi24-Oct-08 23:59 
AnswerRe: How to use DropDownList with C#.NET Pin
Parwej Ahamad25-Oct-08 0:05
professionalParwej Ahamad25-Oct-08 0:05 
AnswerRe: How to use DropDownList with C#.NET Pin
slSoftware25-Oct-08 7:09
slSoftware25-Oct-08 7:09 
Questionhow to send a email.... Pin
raghvendrapanda24-Oct-08 22:10
raghvendrapanda24-Oct-08 22:10 
AnswerRe: how to send a email.... Pin
Abhijit Jana24-Oct-08 23:30
professionalAbhijit Jana24-Oct-08 23:30 
GeneralRe: how to send a email.... Pin
raghvendrapanda25-Oct-08 0:15
raghvendrapanda25-Oct-08 0:15 
GeneralRe: how to send a email.... Pin
Abhijit Jana25-Oct-08 0:23
professionalAbhijit Jana25-Oct-08 0:23 
GeneralRe: how to send a email.... Pin
raghvendrapanda25-Oct-08 2:02
raghvendrapanda25-Oct-08 2:02 
GeneralRe: how to send a email.... Pin
Abhijit Jana25-Oct-08 2:15
professionalAbhijit Jana25-Oct-08 2:15 
GeneralRe: how to send a email.... Pin
raghvendrapanda25-Oct-08 2:35
raghvendrapanda25-Oct-08 2:35 
AnswerRe: how to send a email.... Pin
Shazz Rock25-Oct-08 2:38
Shazz Rock25-Oct-08 2:38 

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.