I want to add a preinstall check in my installer to ensure that Frontpage 2002 Server Extensions are installed on a Windows 2003 (All editions) box. Currently I am checking for the HKLMSOFTWAREMicrosoftShared ToolsWeb Server Extensions5.0Location registry key. This key does not get removed, if I uninstall Frontpage 2002 Server Extentions from the Windows Components.
Below is the function which is called when user clicks add to cart. I need to check inventory to make sure it is in stock when added. Is Javascript the right thing to use or should I write something in ASP? I'm not sure I'm up to the challenge and may need to pay someone to write it, explain it to me, and then help me implement it. Sounds simple enough.
I have a form on my asp page that sends data to an emailing script. I am working with other peoples code which is causing a lot of hassle. Is there any way of sending a Bcc address command from the form rather than the emailing script?
what do you think is the best way to implement an "add new row to table" functionalilty? am using asp(obviously )im currently using document.createElement with javascript, but im having a hard time retrieving the data.am also thinking if this is really the best way to do this.or if this would work with all other browsers other than IE...
how to add a password to using this connection string
<% set conn = server.createobject ("ADODB.connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open(Server.Mappath("dat48372.mdb")) set rs = Server.CreateObject("ADODB.recordset") SQL = "SELECT Price FROM DABRadios WHERE (ID LIKE 6)" rs.Open SQL, conn showall=true %>
and I know that access table cannot have a picture in it, only a access form using OLE, but how do I get my asp page to display a picture for every record? The picture would be a picture of the product with the Stockcode as the filename - m001110.jpg?
I have an ASP page with a table that fills with records from a loop. Every row gets a link to another ASP page with data from the row. The link is written as <a href=newpage.asp?value1=xx&value2=yy .... and so on. Now I try to let the user specify a number that should be sent to the other page. But I do not want to clutter up every row with each an input field, so I thought instead I would place it above all the data rows. When the user clicks on the link, I want to include the input field to the querysting. The problem here is that I cannot figure out how to refer to the name of the input field.
I have just finished building my first shopping cart in asp and MS Access. Originally the shopping cart was to be built for products with no size and colour, however as usual the goal posts have moved and I now need to incorporate a size and colour option for each product. Could anyone explain to me how I can go about doing this i.e. adding the different sizes and colours in the admin website and then linking them to a specific product when it is displayed on the products page? I know they both need to be in a dynamic drop down box when displayed on the products page within the shopping cart, but I am just wondering how to read the correct values out from the table depending on which product is being displayed. I have a normal products table at the moment with general fields i.e ID, name, description etc.
I have a web page hosted by server1. I need to add a link to a web page hosted by server2. This part is simple. However, I also need to give the linked web page the user id for the user that was validated in server1 (it's in a session variable).
At first, I thought the following would work: mywebpageonserver1.asp: Response.AddHeader "MYUSERID", "whatever" Response.Redirect "http://server2/mywebpageonserver2.asp"
i have a page that enters numbers stored in different values e.g monday tuesday wednesday thursday friday into a database. is it possible in asp to add those values up and store the added up value in a seperate field in the database bascially total =monday+tuesday+wednesday+thursday+friday How would i do that in asp.
I am using Dreamweaver MX to create ASP and MS SQL Server for database. I got a few fields like Value1 - Value5. So i have create the recordset of the 5 fields and i am extracting the total count of each field. Now i got 5 recordsets showing the total of each field. So is it possible to add the value of the 5 recordset together into one value? And is it possible to use the value of the recordset to do some simple math addition, subtraction, multiplication and division?
I need to add a ppicture to my Database.. The table is accessed through ASP Recordset but having troubles trying to insert an individual picture to each record?
I need to be able to add multiple records quickly, for example I need to add
name value abc 1 abc 2 abc 3 abc 4 abc 5 abc 6
etc etc, does each record have to be added separately, or is there a way I can add a chosen number of records, lets say 10, and have the value field increase by one each time?
sometimes I might have 30+ simple records that need adding quickly, and each time the first records value will be one, and each record after will increase by one, is there a way to solve this problem or does each record have to be added separately?
regarding adding or getting sum all of the numbers in the database fields example of the Fields:
Totay_Payment 10.00 20.00 30.00 40.00
My problem is i cant display the exact SUM of all numbers and it goes like this 10.0020.0030.0040.00 and i want the exact sum like this 100.00
heres the example of my script :
inTotalPayment = rsSumNumber("Total_Payment") Do While Not rsSumNumber.EOF intSum = intSum + intTotalPayment rsSumNumber.MoveNext Loop Response.Write(intsum)
after i add record from this page, when it link to the next page.. everything is blank, but the record has be added. how can i display the newest record with the old one after i click the add button?
I have been operating a win 2000 server with IIS5. I had to re-build the server recently. I installed SP4 and the lockdown utility. My asp code works on the website, I can access all data driven sites via the web. But I cannot add to the database from the website. It was fine before the re-build. The code has not been changed neither the connection. I have not installed microsoft acess on the server could this be the problem ?. The database is microsoft access file. I have ensured I have given the same information in the System DSN. The driver is version 4.00.6200.00 I have checked the database properties and it is not set to read only.what could be wrong?
The code below checks a form field for words that are in a database.How do i add the facility of if the words are found then adding an alert when submitted
<% call connection dim uninsuredcontents uninsuredcontents = Request.Form("contents") Set connDB = Server.CreateObject("ADODB.Connection") connDB.ConnectionString = "Provider=sqloledb;Data Source=*******;DATABASE=*****;UID=****;PASSWORD=** **" connDB.open dim pcSQL
temp = split(uninsuredcontents," ") Dim strCrit pcSQL = "SELECT PAC_WORD AS word, SERVICEID AS tag FROM tblPackage_Alert_1_Content WHERE (PAC_WORD in ("
for i = o to ubound(temp) if strCrit = "" then strCrit = strCrit& "'%" & temp(i) & "%'" else strCrit = strCrit& ", '%" & temp(i) & "%'" end if next
I want to add photos into a database, with out inserting them. Id like ti have a field that when u enter the location it then displays it on the form, can this be done?
I have discovered that in my website,when a user tries to add data to the Access DB via a form,there is an error if the data contains an apostrophe,For e.g.If the user were to add the user Martin O'Neill to the DB,this would cause an error OR if the user were to add a book called User's Guide,this would also cause an error.
Does anyone know of a generic way to resolve this problem,preferably within the SQL statements which add the data to the DB?