I have a form that inserts into a database and then generates an email to me with a link. I need that link to be a url parameter back to the record based on record ID. The url will be something like http://www.website.com/web_request_edit.asp?ID=101. Currently the line of code I have been struggling with is:
oMail.HTMLBody = "http://ocfs.state.nyen et/web_request_edi t.asp?ID=&web_r equests.fields. item('id').valu e&"
...
Search Result
Collapse
102 results in 0.0058 seconds.
Keywords
Members
Tags
-
CDO Mail and using asp code in htmlBody
-
Problems in getting a string value from a recordset
I am using a recordset to retrieve values from a sql server database that I would want to display on an classic ASP page. It however seems that I cannot get a string value from the recordset. It just shows a blank space on the page that I want that value to appear. I have marked as bold the value that is supposed to have a string value in the code below. Please help me out and let me know what I could be missing. I am working with VBScript.
... -
How can I upload images in my aspx page?
Hi all,
I want to let user to upload images on my site and put some discription too!
I want that these things should be saved in my database too.SO how can I achieve this? -
Highlight a text field when respective radio button is clicked
Hie..I am working asp page with java script as script language. In a form, I have two radio buttons stating active or inactive. I have two text fields next to radio buttons containing Date activated and Date released (for inactive)
Now , I want the text field to be highlighted only when user selects respective button.
Eg.. If user selects active, I want Date activated text field to be highlighted automatically and if user selects inactive,... -
Page is not automatically sending confirmation e-mails
Hi everyone,
I have an asp page that is not sending out the confirmation e-mails when a student completes an online registration process. Could you please take a look at the attached code and tell me what I might be doing wrong??
Thanks
Code:<!--#include file="../Secure/IncludeFiles/Db.asp"--> <!--#include file="../javalib/start.asp"--> <% teamID
-
Send email problem when hosting
Hi,
I rented a host. At localhost, i can control send email from this host to my email. However, when i hosting, it appears the below error:
The SMTP server requires a secure connection or the client was not authenticated. The server response was: host5.vdconline .vn ESMTP MailEnable Service, Version: 5.51-- denied access at 02/03/12 02:45:26
My code looks like:
Code:if( dr != null)
-
Javascript hyperlink variables populated in asp coded email template
How to write a javascript coded hyperlink with two variables defined by asp code?
The data variables that populate in the asp coded email template are:
$(CustomerID) $(OrderNo) $(CustomerName) ..etc
I tried a hyperlink like this but asp doesn't recognize the variables in the hyperlink:
href="../webstore/$(CustomerID)_$ (OrderNo).pdf"> CLICK HERE</a></td>
... -
DMSII database connection for an ASP.NET site
I am currently attempting to convert my Classic ASP site to a ASP.Net site. The current .asp site connects to a DMSii Unisys database, so I am having trouble converting to asp.net so I can connect to the database and retrieve all the info.
This is my current connection using Classic ASP.
Code:<% 'Constant declarations Const CstrConn = "Location=8.8.1.122;Port=1601;Data Source=DBWEB;UID=SHADY22;Password=PASSWORD;Provider=Unisys.DMSii;OLE
-
persisting Response.write
Hi,
I put a Response.write statement in the Session_Onstart method of my Global.asa.
The problem is even though I have since removed the statement, when I run my program it still does the write as if the statement is still there.
I an just running on my local inetmgr.exe 5.1 on windows xp sp3 and classic asp 6.0.
Can some explain why this is so and how I can remedy it?
Thanks in advance....Last edited by Ezima Ugwu; Dec 6 '11, 01:37 PM. Reason: I have discovered that I was calling a method in a .inc which contained same write statement. Sorry my stupid mistake. -
Max concurrent visitors
Hi All
Does anybody know the answer to this.
I am writing an eCommerce website using legacy software:
A PC running Windows 7 Ultimate, IIS 7 & 4Gig of ram
Classic ASP
An ActiveX DLL
SQLserver or MySQL backend database
The question is how many concurrent visitors can I expect to comforable cope with with this configuration.
Thanks -
Getting all file properties asp
Hi all. i am trying to find out if there is a way i can all the file properties from like a video file. i can get the file type and size no problem but i am trying to access like the length properties. I am trying to get this information so i can view a folder via a webpage and have all the file lengths displayed with the other information. i know a bit about asp coding but after hours of googling this i could not find the answer. -
How to access asp hidden field data
I have hidden fields..
Code:<input type="hidden" id="totalrecords" name="totalrecords" value="1"> <input type="hidden" id="totalrecords" name="totalrecords" value="2"> <input type="hidden" id="totalrecords" name="totalrecords" value="3"> <input type="hidden"
-
how to add item in ajax ComboBox control
i am using visual studio 2008 and i got ajax toolkit integrated ....
i used combobox and i tried to add items in it statically but its not showing tht item in runtime(as i want to show that itme like dropdownlist)
its not showing error and at runtime comboBox is visible but its item are not visible
here is the way i add
property->item->listitme-add
... -
Ho to make listbox expandable using javascript?
Hi,
Code Explanation:
I have one text box for name,and one dropdown when I enter 'bo' then dropdown filled from database.Values in listbox are 1)bob 2)bobby 3)Bony etc exists in db. Now my requirement is given below.
I want the name listbox field expand automatically to show all my matches to what has been entered in the name textbox field. e.g. If I am entering just ‘bo’ in the name field actually...Last edited by Dormilich; Oct 12 '11, 05:37 AM. Reason: please use [CODE] [/CODE] tags when posting code -
Saving of html form to server rather than locally
I recently inherited some code that I need to adapt and I am just not a java or asp coder so need some assistance.
I have a web form created by converting an excel spreadsheet to html with several onClick events, specifically "Clear" (clears data), "Submit" (emails data) and "Save Draft" (saves draft lcoally). Customers input their data, the from works its magic and is then sent off per the clicks. User...