PDA

View Full Version : Urgent....ASP.net + XML + CSS


likazahran
05-10-2006, 04:37 PM
hello,
first, this is my post in the site, i'm happy to do that
second, i don't know if this is the right forum to post my question or not, so if i'm wrong pls forgive me coz i'm new here :)
third, my question is: i'd like to make a website using ASP.net to manage the data that is in XML files and the page design that is the CSS file, so i need to know how can i make this combination in case i have the .css file called design.css and the .xml file called data.xml, in otherwords i'd like to know what i'll write in the ASP.net to manage this problem
thanks in advance

vinyl-junkie
05-11-2006, 03:59 AM
Welcome to CodingForums.com! :D

You might want to start by going through this ASP.NET tutorial (http://www.w3schools.com/aspnet/default.asp).

handshakeit
05-11-2006, 10:45 AM
i'd like to know what i'll write in the ASP.net to manage this problem
to use a css file u just use the StyleSheet property browse ther ur css file.

vinyl-junkie
05-11-2006, 12:06 PM
to use a css file u just use the StyleSheet property browse ther ur css file.
More specifically, to reference a stylesheet from within a web control, as an example, you'll have something similar to this:

<asp:TextBox id="name" Columns="30" CssClass="rndbox" runat="server" />