Loading Different Style Sheets
I am currently undertaking a project where I have to make the page layout and colour scheme customisable to the user. I have therefore created the different style sheets for both colour schemes and layouts. Each user within the backend database has a field for layout and colour scheme. I need the system, when a user loggs in, to check the field value of both of these, and apply the relevant CSS sheet to every page within the site thereafter.
I have already tryed using cookies, but becasue it is for a school, many users will use multiple machines so that wouldnt work.
View Replies
ADVERTISEMENT
I'm developing a website for work that exports some reports to excel.
I am using the...
Response.AddHeader "Content-Disposition","attachment;filename=report.xls"
Response.ContentType = "application/vnd.ms-excel"
....strategy to do this. It works wonderfully except I cannot figure
out how to do two things:
1) specify a name for the worksheet that's exported (it names the
worksheet "blah.asp?q=123" when the user wants to see "Monthy Quotas"
2) generate multiple worksheets. The exported spreadsheet should have
about 6 tabs on the bottom that all contain different information in
the same report.
View Replies
View Related
asp is known for it's large amounts of useful functions, how does everyone remember them. I am thinking of typing up all of them and then print it off for easy look up. is that bad?
View Replies
View Related
I'm using dynamic css sheets.What I'm currently doing is reading a normal css sheet as a text file, then using regular expression to change all the size values and outputting the resized css.Would it be faster to put a resizing function in the asp page that outputs the css, rather than using regexp to change a stylesheet? something like this
Code:
<%
Function resize(n)
resize=Int(clng(n)*(size/12))
End Function
%>
h1{height:<%=resize(20)%>px;width:<%=resize(200)%>px;}
#firstDiv{height:<%=resize(120)%>px;width:<%=resize(200)%>px;}
..............
..............
View Replies
View Related
I did some searching here & Google but I'm probably blind because nothing matched exactly what I'm trying to do. I'm creating an excel file through ASP, oh yes, I'm doing it! No probs there but how would I add data to several sheets? This is the idea (simplified) how I'm doing it:
Code:
<%
Response.ContentType = "application/vnd.ms-excel"
Response.Write "<table>"
Response.Write "<tr><td>Hello Excel World</td></tr>"
Response.Write "</table>"
%>
So what should I do if I'd like to create a sheet called "foobar" and write that stuff to it and then another sheet called "zenithrocks" and write some other stuff to it.
View Replies
View Related
I'm facing a challange where I have some XML data in
either a flat file or an SQL database. I also have an XSD
file representing the structure of what used to be one-
many Excel sheets.
My task is to generate an Excel like sheet in as ASP.NET
webpage where users can edit the XML data stored in an SQL
database.
I'm using Visual Studio 2003 and C# to build this ASP.NET
application.
I know it's a long shot, but if anyone has experience in
building similar applications I would love to hear how you
have approached it.
View Replies
View Related
I am trying to export a group of tables to an excel workbook and I would like to export table 1 to sheet 1, table 2 to sheet 2 etc. I am using
<%Response.ContentType = "application/vnd.ms-excel"%>
which exports everything to sheet1. how can I split it so it outputs to different sheets.
View Replies
View Related
I want to use asp to assign a css class to <td> tag. I was thinking an If statement, but i've not come across trying to assign a class to a table cell before! I want the cell background to be highlighted red determined by a database table with - yes or null. (null remains white, yes - red) At the moment it simple like this: Code:
<td><%=strAddress%> </td>
View Replies
View Related
I would like to using style sheet in ASP generated Excel, but it sees cannot using it. Here's my code:
<style>
<!--
..report {
font-family: Arial;
font-size: 11pt;
}
//-->
</style>
<%
response.contentType = "application/vnd.ms-excel"
%>
<font class="report">testing</font>
View Replies
View Related
How to set text style for an excel cell progrmattically, which is equavalant
to Excel->Format Cells->Number Tab->Text
View Replies
View Related
how to add a css style to a menu in asp 2.0?
View Replies
View Related
I need to figure out how to make ASP add in the appropriate style sheet. Basically I want it to look, see what page it is on and say, 'Ok ... if this is the home page, use this style sheet ... if it is not, use this other style sheet.'
View Replies
View Related
I'm trying to write a style sheet switcher for myself in asp. The code sits on every page. I've so far managed to cobble the following: This block sits in the head: Code:
View Replies
View Related
I am storing content in a database, and when a text field is updated I am adding a line "Updated by <username> at <date and time>" inside the text field.
Now what I would like to do is to apply a dynamic style to that line by using a span.
<span style="<%=UpdateStyle%>">Updated by <username> at <date and time></span>
where UpdateStyle would be an ASP variable like "font-weight:bold;color:red" etc, so how that line is displayed is amendable at any time from within an include file.
Well obviously using <%=UpdateStyle%> didn't work ... I also tried defining it as a javascript variable and calling it using document.write, but that didn't work either.
View Replies
View Related
I am having trouble with css style sheet with asp code, everything was working till I put extra of css code in there, and I got error message state expected end statement,
Response.Write "<a class="three" href=""job.asp?ID=" & rs("ID") & """
style="text-decoration: none">"
View Replies
View Related
I would like to know if and how it would be possible to create an
entry-screen that allows the user to enter data in a database, using a
spreadsheet/table-like entry screen. The screen would start of having
headers for each column/field and an empty row underneath. When each column
in the row is filled in, the user must have an option to add another row.
I'm look for the code/explanation that helps me set up the entry screen, and
the ASP code to add the entered data in the database.
I can imagine that each entered row is added to the table when a new row is
added, or a button is pressed and then the screen refreshes with the newly
entered information and a new row...
View Replies
View Related
Further to a question I posted a few weeks back - i'm devloping a site for our company where visitors can vist product sections, and pick catalogues they want - currently they can only go to one section, pick catalogues, order them, then move onto another section - problem is this. The powers that be want a more 'shopping basket' style - where customers can browse all the sections and pick as they go - and order them all together. In a 'shopping basket' styleee - so does anyone know of any good shopping basket style tutorials?
View Replies
View Related
I am trying to make my result set print out the results in the same style as
a calendar or photo album. I am actually making a photo album, and I can
only print the results in list format. I would like to have 3 or 4 results
per table row. Then once I have 3 or 4 results across a new row in the table
will start. Code:
View Replies
View Related
Anybody have any experience of a decent explorer style tree view system which is database driven?At the minute I'm using ASP Tree View (www.CompuSolve-Technology.co.uk) but it's not really the best.It has to work with a database (MS SQL Server).
View Replies
View Related
It there a standardized process of working with text files that follow the typical INI file pattern with sections within it designated with square brackets? I am looking at needing to read in some of these into the DB and then editing in the DB and writing the files back out again. As an example they would have sections like this:
[fltsim]
'Stuff here
[general]
'Stuff here
View Replies
View Related
If anyone knows of something similar to the PHP style documentation that would be great.
View Replies
View Related
I have this file called "inc_BreadCrumbs.asp" basically this is a Navigation include file as breadcrumbs style, and I inserted this to every page in my site. It works fine but one thing I cant configure is that:
It displays the file names as for example: search.asp or results.asp etc... But i want it to display as SEARCH or RESULTS etc... How to implement this? Can it display only page title name or something else how can you change it? Code:
View Replies
View Related
I have the following regular expression:
re.Pattern = "style[^=]*=[^""]*""[^""]*"""
It will grab any style attribute within HTML that uses double quotes, and put it in the re.Matches collection.Now, I want to include single quotes into this regular expression. Here's what I have so far:
re.Pattern = "style[^=]*=[^""']*(""|')[^1]*1"
but it does not work.
View Replies
View Related
We have a web server running IIS 5.0 that will not load
any file with an .asp file extension. The server
loads .html just fine, but all links to an .asp file end
up timing out.
View Replies
View Related
Is it possible to create a loading bar with ASP? I am thinking of displaying the loading bar while my customers' requests are being processed (databse update).
View Replies
View Related
I have a an ASP page on which i wish to load dynamic text by way of a dot text file.
It would be great if something like.-
<txt scr = "MyTextFile.txt">
existed but life aint that simple, or is it?
View Replies
View Related
i want to load an id from a table in the db how do i do that?I am scripting in asp?
i tried this but it wont work.
SQL = "SELECT * FROM users WHERE id=Request("id")"
View Replies
View Related
before displaying any page i want to show message pls wait page is loading. its written on browser. i think meta tag will do this?
View Replies
View Related
I have an asp page which takes approx 1 min to load over the network due to how much data it has to deal with.
If someone was to press stop on the browser i assume it doesnt close the connection to the database is there anyway to ensure it does?
View Replies
View Related
I've got an asp page that is set up in with two frames. The problem in question pertains to the main frame which contains a simple 'response.redirect' line that redirects the visitor to a different location. Other than this line, everything else are tags and no asp-oriented code.
I've tested this on a couple of computers, and it works fine. However, there are a few other computers in my office where the redirect just hangs and doesn't load the redirected page (i.e. the status bar states 'Open http://someurl.com' and stays like that)
Is this a problem with using the asp line, or is it a computer setting/browser setting I'm overlooking?
View Replies
View Related
I have an ASP file that eastablishes two connections to a SQL Server and produces two Record Set objects. I am using IIS to develop and the SQL Server database is on the same computer.What I am developing is a message board, so there is a form on which information is submitted. The first connection and recordset puts information from the form into the database table, and the second connection and recordset pulls out 10 records from that same table and should write out some information from the recordset.
The problem is when the form is submitted, it takes forever for the next page to load. I am not even sure how long it takes, because the longest I waited was about 5-10 minutes for it to load, and it still would not load so I closed the browser.
Are the two connections or two recordsets too much for the server to handle, or am I doing something else wrong?
View Replies
View Related
is there a way of loading pages into a div i have created a review server where people can upload folders of work the create a start file, ie an index page on a microsite..
i then want to show this page within my page.,,, i dont want to use frames or i frames, can this be done by loading the page into a div?
View Replies
View Related
im not sure if this is possible, but how do you load a file in asp? Basically i want the user to choose a .mdb file from their file system and then set that file as the "master databse" to be used in the website!
View Replies
View Related