views:

48

answers:

2

Can anyone please help me how can I create a CSS file for my VB.net Web application?

A: 

It's just a simple text file... check out the CSS tutorial at w3schools.com...

kzen
+1  A: 
  1. Right Click on project in solution explorer > Add new Item > Style Sheet > Give name and add.
  2. drag file in <head> tag of web page. It will create link tag and css file is automatically added.
  3. Now you are able to use css for web controls. See following
    http://msdn.microsoft.com/en-us/library/h4kete56.aspx
    http://msdn.microsoft.com/en-us/library/wcyt4fxb.aspx
Brij