CSS filter. You will need to specify a fixed absolute value for the height
so as to make the css filter work. I think this should be a implementation
>Subject: Re: How to fill background of page with gradient
>Date: Fri, 7 Sep 2007 01:25:52 -0500
>Thanks. Lucky for me, this app runs in a corporate intranet and all
>browsers are ie 6+. Therefore I can use a css filter. So far, I havent
>been able to fil the entire page.
>
>Here's an example of what I'm doing. First is the class in the stylesheet
>used to apply the gradient to the page. Second is sample html showing how
>I'm using it.
>
>.clsSuggestionPage
>{
> FILTER: filter:
progid:DXImageTransform.Microsoft.Gradient(GradientType=0,
>StartColorStr= 'white' , EndColorStr= '#f3faff' );
> height: 100%;
> font-family: Verdana;
>}
>
>
>
><%@ Page Language="C#" AutoEventWireup="true" Codebehind="zTest2.aspx.cs"
>Inherits="eVIPNow.zTest2" %>
>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ><html xmlns="
http://www.w3.org/1999/xhtml"> ><head runat="server">
> <title>Untitled Page</title>
> <link href="app/stylesheets/SuggestionLogStyles.css" rel="stylesheet"
>type="text/css" />
></head>
><body class="clsSuggestionPage">
> <form id="form1" runat="server">
> <div>
> <table>
> <tr>
> <td>
> xxx</td>
> </tr>
> <tr>
> <td>
> xxx</td>
> </tr>
> </table>
> </div>
> </form>
></body>
></html>
>
>
>
>THANKS.
>
>
>"Steven Cheng[MSFT]" <stcheng@online.microsoft.com> wrote in message
>news:qC8QaR97HHA.5204@TK2MSFTNGHUB02.phx.gbl...
>> Hi Moondaddy,
>>
>> Any progress on this issue? If there is still anything else we can help,
>> welcome to post here.
>>
>> Sincerely,
>>
>> Steven Cheng
>>
>> Microsoft MSDN Online Support Lead
>>
>>
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>>
>> --------------------
>>
>>
>>>
>>>Hi Moondaddy,
>>>
>>>Yes, I agree with Guffa that for XHTML page(the default schema of ASP.NET
>>>2.0 page), the body only cover the size of the actual content on the page
>>>rather than the entire browser window. However, it is also somewhat
>>>specific to the "DXImageTransform.Microsoft.Gradient(" CSS filter
>> component
>>>as it is quite specific to IE webbrowser. So far for applying gradient
>>>background color for web page, it is recommended that you use a
background
>>>image which is gradient and this approach is neutral to all browers. How
>> do
>>>you think?
>>>
>>>Sincerely,
>>>
>>>Steven Cheng
>>>
>>>Microsoft MSDN Online Support Lead
>>>
>>>
>>>This posting is provided "AS IS" with no warranties, and confers no
>>>rights.
>>>
>>>
>>>--------------------
>>>>Date: Sat, 01 Sep 2007 10:15:02 +0200
>>>
>>>
>>>>
>>>>moondaddy wrote:
>>>>> I want to fill the entire background of a page with a gradient. As a
>>>test,
>>>>> I first filled with a solid color like this:
>>>>>
>>>>> <body style="background-color: #ccffff;" >
>>>>>
>>>>> and the entire page was this color.
>>>>>
>>>>> next I replaced that with a gradient style like this:
>>>>>
>>>>> <body style="filter:
>>>>> progid:DXImageTransform.Microsoft.Gradient(GradientType=1,
>> StartColorStr=
>>>>> 'white' , EndColorStr= '#e9f5ff' );" >
>>>>>
>>>>> and I entered a few words of text in a div take. the only area with
>>>color
>>>>> was the div tag.
>>>>>
>>>>> Lastly I moved the style to a css class and set all the proper
>> references
>>>>> and I got nothing. I also did a Google before making this post with
no
>>>>> luck.
>>>>>
>>>>> Please advise.
>>>>>
>>>>> Thanks.
>>>>>
>>>>
>>>>What version of html are you using?
>>>>
>>>>in xhtml, the html and body elements is only the size of the content,
>>>>not the entire window. You have to set the height of them to 100% to
>>>>make them cover the entire window.
>>>>
>>>>--
>>>>Göran Andersson
>>>>_____
>>>>
http://www.guffa.com >>>>
>>>
>>>
>>
>
>
>