I currently not near my work computer to try this so I am asking the experts here. Can you use GDI + on a webform to create gradients and all of the other good features of GDI
thanks
Printable View
I currently not near my work computer to try this so I am asking the experts here. Can you use GDI + on a webform to create gradients and all of the other good features of GDI
thanks
Yes... you can.
However, if the gradients don't need to be dynamically created, it would far easier and less server intensive to just load the gradient as a static image and use a style tag to make it the background image for the form or on the body tag.
<body style="BACKGROUND-IMAGE: url(http://localhost/myWebApp/Images/BLU.jpg);">
Using static images is a far more efficient use of server resources.