Click here to Skip to main content
16,004,991 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: window.showDialog Pin
waheed awan6-Feb-08 9:24
waheed awan6-Feb-08 9:24 
GeneralRe: window.showDialog Pin
waheed awan25-Feb-08 13:28
waheed awan25-Feb-08 13:28 
GeneralRe: window.showDialog Pin
waheed awan25-Feb-08 13:38
waheed awan25-Feb-08 13:38 
GeneralRe: window.showDialog Pin
Arun Jacob27-Feb-08 17:15
Arun Jacob27-Feb-08 17:15 
QuestionASPX page dimensions? Pin
Xpnctoc30-Jan-08 10:50
Xpnctoc30-Jan-08 10:50 
GeneralRe: ASPX page dimensions? Pin
Guffa30-Jan-08 12:28
Guffa30-Jan-08 12:28 
GeneralRe: ASPX page dimensions? Pin
Mike Ellison30-Jan-08 18:05
Mike Ellison30-Jan-08 18:05 
GeneralRe: ASPX page dimensions? Pin
Xpnctoc31-Jan-08 4:08
Xpnctoc31-Jan-08 4:08 
How cross-browser compatible is that mode? On some website somewhere I read that "fixed" mode exhibits very flaky behavior in IE. I'm running IE 7 and Firefox 2.0, but my client has over 400 clients of their own that use the system, so you know someone out there is going to have some really archaic browser.

I was able to center a small div regardless of scroll position using "fixed" in both IE7 and FF2. However, when I wanted to cover the rest of the screen in a 50% transparent gray cover to make the other div more visible, I encountered an IE 7 issues for which I found a bizzare work-around. The div tag:

<br />
<div runat="server" id="divTest" style="position:fixed; left:0px; top:0px; width:100%; height:100%; background-color:gray; filter:alpha(opacity=60); -moz-opacity: .60;"></div><br />


...seemed to work OK when I had not scrolled the page. However, when I scrolled the page to the bottom and clicked my button to show the div, only the upper half of the screen was covered. So much for "100%". HOWEVER, when I set the width/height styles in my CODE-BEHIND INSTEAD:

<br />
divTest.Style.Add("height", "100%");<br />
divTest.Style.Add("width", "100%");<br />


...then I do get 100% coverage, regardless of page scroll position.

WHATEVER!
GeneralA little problem Pin
zeeShan anSari30-Jan-08 9:57
zeeShan anSari30-Jan-08 9:57 
GeneralRe: A little problem Pin
pmarfleet30-Jan-08 10:34
pmarfleet30-Jan-08 10:34 
GeneralRe: A little problem Pin
zeeShan anSari30-Jan-08 19:22
zeeShan anSari30-Jan-08 19:22 
GeneralRe: A little problem Pin
pmarfleet30-Jan-08 21:23
pmarfleet30-Jan-08 21:23 
GeneralJavascript Pin
waheed awan30-Jan-08 8:52
waheed awan30-Jan-08 8:52 
GeneralRe: Javascript Pin
Parwej Ahamad30-Jan-08 17:20
professionalParwej Ahamad30-Jan-08 17:20 
QuestionDisadvantages of XSLT and Ajax in XSLT! Pin
SIJUTHOMASP30-Jan-08 8:06
professionalSIJUTHOMASP30-Jan-08 8:06 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 8:29
pmarfleet30-Jan-08 8:29 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
SIJUTHOMASP30-Jan-08 8:45
professionalSIJUTHOMASP30-Jan-08 8:45 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 9:48
pmarfleet30-Jan-08 9:48 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
SIJUTHOMASP30-Jan-08 10:49
professionalSIJUTHOMASP30-Jan-08 10:49 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 11:38
pmarfleet30-Jan-08 11:38 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
led mike30-Jan-08 8:33
led mike30-Jan-08 8:33 
QuestionCan templated controls define tags for sub components? Pin
Kir Birger30-Jan-08 6:10
Kir Birger30-Jan-08 6:10 
GeneralWorking with IE7 not in Firefox Pin
MSinha30-Jan-08 5:37
MSinha30-Jan-08 5:37 
QuestionRe: Working with IE7 not in Firefox Pin
newc130-Jan-08 5:48
newc130-Jan-08 5:48 
GeneralRe: Working with IE7 not in Firefox Pin
MSinha30-Jan-08 18:57
MSinha30-Jan-08 18: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.