I was asked to incorporate colour options for items sold in my shopping cart such as pens.So if I am selling a pen that comes in 4 or 5 or more colours, then I have to create the number of types of collours for the pen. I am looking at creating a colour dropdowns for individual items , but I am not sure how I can do this in backend.I am using Access database and using ASP programming. This is the link which is an example of what I mentioned http://www.27905398.com/product_inf...9a4aed0a18fb81d .appreciate if anyone familliar with this function
i thought id post it and see what more experienced people think. With firefox now the browser of choice with people in the know their lack of VBScript support is causing me problems. If i want to say validate my forms i must now do it on the server-side (which is probably safer anyways). But things like pop-up warnings ??? or if i want to perform _OnLoad, _OnClick, _OnChange events , what do i do ?? or more to the point what are my options if any. What is the general opinion on using VBScript with ASP pages.
The code for ShadowUploader works great for me when I have it on a page by itself. My problem arises when I try to add other buttons. The “Upload” button still works but the other buttons act like just another “Upload” button. What am I overlooking?
<% Option Explicit Response.Expires = -1000' Make browser not cache pg. Response.Buffer = True' Buffer content so Response.Redirect will work. %> <!-- #include file="~incl/ShadowUploader.asp" --> <!--#include file="~incl/~config.asp"--> <!--#include file="~incl/jpsutility.asp"--> <!--#include file="~incl/menu.asp"--> <!--#include file="~incl/misc.asp"-->
I have an ASP variable which is a certain number. I want to create a Select tag in a form, which will be populated up to this number. So, for example, if my number was 7, you would have a list of numbers between 0 and 7 to select.I'm not sure how to do loops, but I had an idea that the code would look something like this: Code:
<select name="select2" id="select">
<% for i=0 to i=varNumber Response.Write ("<option value='"& i &"'>"& i &"</option>") rsBooking.MoveNext %>
I need suggestions to allow my users the ability to print reports from my ASP application that will be quick and easy setup. I need them to choose an option such as
Print all checks for the current week
and receive an output of 1 page per employee . Currently I have the page so someone can view 1 employee on the screen and manually print. But I am looking for some web based report delivery method that will be quick to implement so the user can preview the batch of reports and then print. Similiar to if you were running a report in access.
My Current project requires the use of ASP.I've been able to pick it up fairly quickly, but I'm curious to know if there is a function similar to the php mssql_num_rows(). This simply returns the number of rows returns with your specified query. So far my search through this forum hasn't returned anything of the like.The closest I have seen would be to execute another sql statement to count the result first. Which seems to be alot of double work.
We are viewing the same page on my server in New York. I submit or send something in to an ASP, and it returns to me an updated page. How do I get it to reload showing changes for you in Florida who is just sitting watching the page not touching anything?
I have a frames page setup. When I send in info, I have this code to show changes for me by an automatic reload. it works for me:
where I can get a full list of ADO options for opening a recordset? I'm currently using adOpenForwardOnly but I want my recordset to be able to move backwards to the start of a recordset and several other functions.
i am using frontpage ,ASP, and some javascript. how do you create a START-> ALL PROGRAMS selection option. you place the mouse over the "all programs" and you got all selection related to "all programs"
i want to do the same thing with data from a database. how do i do this?
I have data outputted to the table such as (where * are dividers): Name 01 * Category 1 Name 02 * Category 1 Name 03 * Category 2 Name 04 * Category 2 Name 05 * Category 2 Name 06 * Category 2 Name 07 * Category 3 Name 08 * Category 3 Name 09 * Category 4 Name 10 * Category 5 Name 11 * Category 5
I want each "Category" to have it's own background color, aletranting colors would be ideal so:
Name 01 * Category 1 (Background Color #fff) Name 02 * Category 1 (Background Color #fff) Name 03 * Category 2 (Background Color #ffc) Name 04 * Category 2 (Background Color #ffc) Name 05 * Category 2 (Background Color #ffc) Name 06 * Category 2 (Background Color #ffc) Name 07 * Category 3 (Background Color #fff) Name 08 * Category 3 (Background Color #fff) Name 09 * Category 4 (Background Color #ffc) Name 10 * Category 5 (Background Color #fff) Name 11 * Category 5 (Background Color #ffc)
I am trying to help out my friend by creating a invoicing page in ASP for his business, basically consisting of 3 pages : (no sensitive info will be asked for.. )
1.info submission page -cust enters his info 2.info summary -cust info summarised plus quote calculated 3.invoice page -quote emailed for invoicing.
At present I have made the initial set up and it works fine. However, I am using CDONTS 1.2 to email the gathered cookies with the following code:
I have created a few web site apps that use e-commerce technologies using ASP and XML. These are typical sites, with shipping, tax, blah blah. Usually it's standard shipping and is just related to the weight of the entire order.
Now, I've been asked to add several shipping options (i.e. Overnight, One-Day, Standard). My question...I did some searching around first but without luck...are the sites that offer multiple shipping options tied in with another company such as UPS? Or is it just more data that I can deal with on my own?
I have 10 athletes i will be testing and displaying their information
so there will be two split screens the bottom screen where the user enters the data and the top screen where the data will be sorted to show the ranking of the athletes Code:
The default drop-down value is populated by a value already selected using Recordset.
The problem is on the Edit page, the user should have the ability to change the drop-down value, but because the default value is one that has previosuly been selected, it appears twice in the list.
Because I already have an "If, Else" statement to disable some fields, it is causing confusion when I try to enter further If/Else statements to narrow down the drop-down list. Code:
function Add() { // alter the action and submit the form document.topicform.action = location.href + "1" ; document.topicform.submit(); }
function Delete() { // alter the action and submit the form document.topicform.action = "deleteformbutton.asp"; document.topicform.submit(); }
As you can see I'm not really sure how I should go about processing the actual form. Each time the user decides to add another form button I want it to keep the value of the old button. Anyone got any ideas?
I am trying to set up a component that will allow events that are date sensitive. From this date to that date. What I am trying to do is use drop down menus for selecting the dates, and I am having a hard time finding out how to build these drop downs so when someone is editing an event, the existing dates are pre-selected in the drop downs. But I need to seperate year, month and day for both and then have it change the value of the correct option to selected.What is the easiest way to do this?
I have a drop down list on an asp page. Can I have tooltips for each item so when the user scrolls odwn through the drop down I display a tooltip (as some options are long and I do not want to incrase the width of my drop down).
Below is an extract from a form that i am writing. I need the user to be able to have a drop down menu of languages. How do I use the 'option value' command in ASP like you can do in HTML; so there is a list of languages for one to be selected. If someone could amend my code to give me a couple of language options so I can get an idea of how it is down.
Is there a way to control the hypertext color. I noticed mine are blue when not clicked and red/purple when checked. Is there a way I can make them say white and blue?
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?
Ive created a web page that queries a db and i have that all working fine. What i dont have though and would like to be able to do is get the page to highlight rows according to one colums value, ie
Colum1 Colum2 Row 1 50 Test <-- would like to the be highlihted lite blue for instance Row 2 90 Test2 <-- would like this to be highlighted red for instance
does anyone know how to make a pop up color chooser so that people can click a button that pops up a thing of colors and then they select from it? i'd even take the color options thing that is at the top of this scrren when writing messages but i need a way to choose colors easily.
any suggestions? also it doesn't have to be in asp, i'm figuring it might be better suited for js or something but i don't really know js and most of my site is in asp...
i've been playing around with this code but can't seem to get it to work. When the check box is clicked the row should change to a color, not sure on why its not working, any ideas? Code:
I'm gettin some numbers out af a db, and would like it to give certain numbers different color. lets say that all numbers 4 should be red, and all numbers 5 should be green.Is that possible
I'm writing an article which contains quite a bit of ASP code in the examples. What I would like is to show this code, in HTML, using pretty color farmatting techniques.
Things like comments in green, keywords in blue, operators in red, the kind of color formatting that text editors have. Does anybody know of any tools which can take ASP code as plain text and produce color formatted HTML output?
I've got a directory site for accommodation providers. I would like them to have the ability to display a couple of images on their details page. I can easily set it up so they upload images to my server and DB and are displayed etc etc... But I would rather have them just provide the links so that the pictures remain on their website etc....
The only issue I have is what happens if it is a bad link. By uploading to my server I can remove the risk of images not appearing, but by using a link, is there a way of 'testing' whether there is an image at the end of the link. Is there a script out there capable of verifying if an image file is where it should be for veiwing? My initial thought was to have a script that tests the image link for a width <> 0. On the page I would use an IF statement to allow displaying of the image if the image existed..... BUT HOW ?
I have a form with several submit buttons. Each one is different. For instance, one may require the next action window to be a pop up requesting more data. Another may require it to be normal. And of course I need the request data from the form. I tried not specifying the action on the form and put it on the the submit button via the OnClick but the request data was always behind and isn't current until after the submit.
I guess an easy way to think about it is say you have a tool bar and depending on which button you click it fires a different asp file but the current form data.
I m trying to use multiple option menu using redirect function in ASP.
I managed to do a single option but I need to use multiple options can you please advise on how to do this, so both options apear in the same page. for instance, in the code below a user should be able to select uk and also selects between the other options; population, geography from the same page. Code: