If I am understanding you correctly...
<BODY style="filter:progid:DXIma
Main Topics
Browse All TopicsHi
I am new at asp2 and have decided to play around with it for a while.
My question is a real simple one - How do you apply the gradient look to a page.apx ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Can you give us an example? A link to a site with the effect you are wanting?
If all you want to do is create a color gradient from left to right, use PhotoShop or GIMP or your favorite graphics package to create an image that is 5 (or so) pixels high, and set the width to the largest resolution you expect your visitors to have (or larger to be safe). Then use the gradient tool and specify the colors of choice. Save that image as a PNG, JPG or GIF, and set that as the background image in the body tag of the page.
You can also use CSS to tile the image like:
background: #fff url(<path>/gradientbg.jpg)
Or if the gradient is to go from top to bottom, do:
background: #fff url(<path>/gradientbg.jpg)
the gradient on this site is cool
http://www.sitefinity.com/
You really don't need .asp or .aspx for this. Simple HTML will do:
Add
<style>
body
{
background: white url('Background.jpg') repeat-x;
color: #333;
}
</style>
To the top of the <body> section of your html page, and save the following image in the same folder as the html page.
http://www.sitefinity.com/
Business Accounts
Answer for Membership
by: topazgPosted on 2007-09-20 at 05:47:02ID: 19927784
The gradient look?