hi evary one
I have a CSS file called mystyle.css. I want to attach with each and every page of my application in asp. how Can I do this...?
Pls help..
hi evary one
I have a CSS file called mystyle.css. I want to attach with each and every page of my application in asp. how Can I do this...?
Pls help..
at the top of your asp page, then your header page holds the CSS, Javascript etc etc
normally you would have header, footer in a seperate file and my method used to be to create one single asp page, then split the code into 3 pieces.
Have a look at ASP.NET Master Pages Overview it may be what you are looking for.
ASP.NET master pages allow you to create a consistent layout for the pages in your application. A single master page defines the look and feel and standard behavior that you want for all of the pages (or a group of pages) in your application. You can then create individual content pages that contain the content you want to display. When users request the content pages, they merge with the master page to produce output that combines the layout of the master page with the content from the content page.