There is a setting in IE for "Print background colors and images."
I've noticed that without checking this option, a web page will print CSS
lines between table rows, but a background color of say the header won't.
The below style will display the borders in print preview, but won't display
the background color.
Does anyone know if it's possible to force background CSS or HTML colors to
print without having the user change the default in IE to not print
background colors? Code:
I have a table with coloured cells. I want to print out the table via IE with the coloured cells. But the outcome of the table does not have the cells coloured.
Are there ways to force out the colouring of the cells in the print outs?Either via php/asp/css or any means.
I know how to alternate table row bgcolor by odd/even method but what I am trying to acheive is alternate colors by the date value in the database so that each row with the same date value has the same bgcolor. There maybe 3 red rows for 1st date, then 2 blue rows for 2nd date, then 6 red rows for next date etc.
I'm creating team pages. One page will be used for all teams and I will pass the teamID through the page. I'm using ASP/Access. Each page has the same info.
My question is how to best handle color for each team page? Should I store the HEX # in the database and use them in the CSS. i.e. each team would have a Main color, 2nd color, etc. I have not done this but I'm assuming I can.
I have a report that I render out as PDF. I have two sections in my Details section of the report. I want to format the background of each section. so one half will be one colour and the other half will be a different colour.
Anyone know how I can do this?My Details section simply consists of labels and database fields.
In a regular drop down form element like below, is there a way to display associated colors with each option? Basically, I'd like it to look like Outlook's Label Control drop down that displays a small color block with each choice.
I need to add to my application a ComboBox in whic the user selects color. The comboBox shows the name of the color and the background of the word is in the color that says the word. The names and values of the colors must be read from MSSQL database.
I'm trying to do it with this code but this one has the colors and values given and not read from DB. Code:
Attached is my code. Its working fine and produces great results but all the rows are in the same color background (unless mouse-overed).
What would be interesting to see if I can get alternative colors working here... Can anyone dig in the code (maybe re-juggle) and help me with alternate row colors?
First Row to be #FFFFCC Second Row to be #CCCC99 when not mouseovered
I am putting the results from a database in a table using ASP. How can I get alternate colors in each row. (i.e. first row white, second grey, third white, forth grey, etc.)
is anyone have some link or know any please where I can find some information about how ASP is working in background, how it cooperates with IIS and similar stuff.
im trying to create a script that is sending mail & due to its time of executing im looking for a way to run that script in the background so the user wouldnt have to wait.
i looked it up but didnt find nothing usefull, but i did come across batch files & vbs files. does any body has any idea how does it work or some reading about this?
I have built an asp app that sends an e-card to selected recipients along with the text entered by the user. Well, on some machines the text is not visible because the background color of the table is not going across correct. The background color is supposed to be teal with white letters. However the background is going across white with withe letters on some machines. I am using the same browser (version and everything) as one of the machines that can't see it the correct way. I am able to see it fine. I have put in the back color for all of the cells the table, etc but it's still going through white. What would cause this to happen?
I have done a CMS system and if I could do something in background mode,for example, send a newsletter.I don't want to wait until the page loads completely.I'm creating a mail object for each record of my newsletter suscriptors,I don't know if it would be better to use bcc with all records.
I got background in my left and right frames (tables) and on the background image there's a custom border on each side. I want the background to extend on a different resolution rather than repeat. Anyone know how I can pull this off?
Is there a way I can put a print button on my asp that will actually print the current Screen opened. My asp has an access backend.On my asp page can I have a button that can actually print a report from the Acesss Database.
Is there a way I can put a print button on my asp that will actually print the current Screen opened. My asp has an access backend.On my asp page can I have a button that can actually print a report from the Acesss Database.ie a button that will go the report section of access DB and print teh report that I want a way to get around with the appropriate codes will be appreciated as I am new to asp programming.
I am using two asp pages that have large (up to 1280X1024) background images. The image is the same on both pages, but when I go from one page to another it reloads the image each time and flickers for a second when loading because the file is so large. Is there a nifty way to keep the background image the same across two pages without reloading.
Is it possible to make functions or system calls run in the background of an ASP script? I need to ping a numebr of different addresses, and as I could run these at the same time, it would make it a lot quicker, especially as a few of these addresses will always deliberatley time out, which holds the other pings back. I'd like to be able to run all simultaneously, but if i could at least run one ping (which i'm doing via a ping.dll module i found) in the background that would be great.
i've been searching around but for the life of me I can't find anything about this. does it exist at all?
Is it possible to set an image as the background body image (non-repeating too) in a message sent using CDO. I don't want to embed an external webpage (I have to insert user form related variables back in the body of the email) and the image is on the server the mail is being generated from - have googled for ages on this one but can't seem to find anything suitable...
I have a ASP web application, in the application I need to check if people did submit some documents, and if they don't past a certain date I want to send them email notifications.
I am using SQL Server 2000 and SQL Server Agent How can I write ASP code to run in the background on my IIS server, that will check for people who did not submit past a certain date and automatically send them email notifications?
I have a stored procedure that gets called from an ASP page. I had a requirement to adjust the stored procdure to have a delay, so now my browser waits for the stored procedure to complete before it returns the page and value I am looking for.
Is it possible to launch the stored proc from the ASP, but have it run in the background per say and return the value immediatley to the browser, cause the browser portion to not appear to be delayed?
I am using Win2k, IIS 5 and vbscript as well as asp.
I want to run an asp page that creates a PDF (using a third party ASPPDF dll) as a background process to free up the main website as it takes about 3-4 minutes to render the PDF.
how to change the background color of a web form programatically from C#. I have found examples on the web for Visual Basic, but I can't get them to work in C#.
how to run a script in the background? I have a stored procedure, which gathers a lot of info on various tables in a MSSQL , and from that rebulds a large table. I run this stored procedure like so:
Response.write "Updating CWC Page .... wait until you see <b>Finished!</b>" dbconnection.CommandTimeout = 0 DBConnection.Execute("proc_updatecwc") Response.write "<bR><BR>Finished!<BR><BR>"
this script takes about 3 minutes to complete, and then I can't do other stuff on the site. This script needs to be run at regular intervals, whenever new company information is added. Now, I want to be able to add the new info, and let the script run in the background, without waiting for the outcome / output. Can this be done?
My background images are not appearing on the page. I am unsure why. I can see them on my on pc, but nobody else with the same computer configurations can see these background images. We are using XP, so I thought there may be a problem caused from this.
I am wondering how to do automatic ASP background process to generate every few minutes statistics from DataBase? I.e. how many people are already registered... or how many people were born in 1980(?) etc... And of course this background process should insert measurements into a special ROW in DB.
I have web page that I use for add/delete/modify records from a database. Depending on what the user desires on previous web page this particular web page allows users to add, modify, or delete the record from a database. Each has different directions and labels on buttons are change with in code.
My users also want the background color for add web page to be one color, modify web page to be different color, and delete web page third color. In VB this was form.background color, but can not seem to find solution in MSDN for this one.