Read Receipt
Anyone know if it's possible to add a read receipt to emails sent via CDONTS or CDOSYS
Anyone know if it's possible to add a read receipt to emails sent via CDONTS or CDOSYS
Is there a way to request a read receipt when sending out an email?
View Replies View RelatedDoes anyone have some example code on how to receive an xml document sent to the server ?
I`m using 'Msxml2.ServerXMLHTTP.3.0', but can`t seem to get it working.I just want to receive the xml document and insert it into a database
I am using myMail.DSNOptions = 14 n a script that uses CDO.Message to
send an internal mail. Is there a way to access the delivery status in
the same script and report a bad route...below is an example I would
like to achieve.
Example:
Sub sendMail(msg)
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Queues|Critical"
myMail.From="ExMgmt@us.panasonic.com"
myMail.To="santhoshs@in.ibm.com"
myMail.TextBody=msg
myMail.DSNOptions = 14
myMail.Send
set myMail=nothing
<----------------------------If message not delivered Wscript.echo
"mesage not delivered" else "great job" end if ------------->
End Sub
i'm trying to show a message where a user can print after checkout. i have 2 pages, the checkout page and the validate order page, where the checkout page displays a form and the user will fill this page and submit the order, then the order will be stored in the database in a table called Orders where the Order ID is generated automatically, and the date is also stored using the date function.
now what i need is after the order is being stored in the database the validate order will be called to display the message that the order has being received, well i need to add the two fields (Order ID, date) from the Orders table based on this specific order.
How can i do that ?
I'm trying to setup a receipt page to finalize my whole shopping cart deal.
PayPal is used to pay and it uses IPN to return the data back to my script which inserts everything into the database and then forwards to my receipt page.
The IPN script page stores the orderID under a session variable called orderNumber. With that, I've created recordsets on my receipt page to hold the orders and orderDetails information just fine.
My problem is that neither of these tables hold the product's name so that I can display line items. The orderDetails recordset does have Product ID and is related to the Products table in my database by the productID field.
How can I make the receipt page list the actual names instead of just the IDs?
I have an electronic cash drawer as part of a point-of-sale installation. You're supposed to be able to automatically open the cash drawer with some printer commands (drawer is connected to the receipt printer) but I can't get it to open automatically. I want it to open when the customers receipt is printed.
How do you send printer escape sequences to a windows printer via ASP ? The cash drawer model is ... Posiflex CR-4100 Cash Drawer.
I am learning more and more about asp but can't find and figure out where and what varialbles to add to this form. I want to be able to have this form email to me and to the person that filled it out as there receipt as well.
I don't have it set up to show the results after they fill it out that would be nice but not sure how to do that either. My main focus is getting the receipt sent to the person that filled it out. Code:
I,ve uploaded an MS Access DB to a web host and find that although I have set the DB permissions to Read and Write the actual tranfer changes these permissions and when I try to write to the DB there is an error to the effect that the DB is read only.
I have downloaded the DB I uploaded with full read/write permissions and find that the DB is read only.
Is it possible to use asp to read from a .tsv file?? If so how do you create the connection??
View Replies View RelatedIs it possible to read PDF File using ASP.
when I retrieve data from the my database if I got the name and description. I want only display the first 20/30 letters of the description but I don't know how to do.
View Replies View RelatedI have an ASP web site that I can read an XML file and process it fine. However, now I am asked to read XML data via (I think) a web service url. I looked at the ADO Stream and it looks like it may be a way to do this, but I'm not sure. I need to read 2 different streams, one with data and one with returned images.
I need to process the data like a recordset and load it (and other) information into a web page and return to the browser. Can anyone point me in a direction to read more about how to do this and/or some samples?
I need to use ASP to read a SQL db for dates. If the date falls within "this (current) month", I need to auto-populate a word document with the corresponding information from the tables... Is this possible.
View Replies View RelatedIs there a way that I can read the current url.
I have an asp page currently such as default.asp?x=1&y=2&z=3
Now I want to keep the existing parameters and attach another parameter
to it and resend to default.asp
As the original parameters are dynamic, and may or may not be
generated, the only way is to read the current url and to simply add my
new parameter such as h=5 to the url.
I don't know how to read the current url.
I tried Request.ServerVariables("SCRIPT_NAME") but that didn't include
the parameters. i.e. it just returned the default.asp
Is there a way to read email messages with ASP without installing components?
And will it work with any email server, or just windows IIS?
Something that will work almost like Webmail. But I just need to read the From, Subject and Body of the email.
I got a database with user and email in it. Now I want when a user logs into my page that it automaticly fills in the email into a email form. How can I do that in Asp.
View Replies View Relatedanyone here got an idea on what codes am i going to use? I got a folder full of images (jpg) and I want my asp page to display those images.
View Replies View Relatedwhy do I get this error?? Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object is read-only.
/asp/formHandler2.asp, line 68
here's my code:
I am wanting to use ASP to read the IIS log files on our web server. Can anyone help?
View Replies View Relatedhow to modify this script to make the connection to the MS Access database read only, so that writing to the database directory is no more necessary (currently, I have to give IUSR write permissions so that the .LDB file can be created... but I don't need that because I want the database to be read only, and I don't want to grant write permission to IUSR).Code:
----
cst = "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=" & Server.MapPath("/database/riviste.mdb")
set conn = CreateObject("ADODB.Connection")
conn.Mode = 1
conn.open cst
strSQL="SELECT * FROM riviste ORDER BY Titolo"
set rs=conn.execute(strSQL)
----
i am trying to read a nodes ( i dont know if i am right by
calling it node. see sample) value with asp.
xml page is very simple :
<?xml version="1.0" ?<response success="true" </response>
my code is this
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
xmlhttp.Open "GET",
"http://xml.my.net/tokencheck.asp?t="&token&"&u="&userid&"", False
xmlhttp.send()
Set xmlhttp=Nothing
how can i add xmldom and parse the result page so i can assign response's
value to a variable?
I am using file system object to read an xls file in the webserver ,
the file is located in the webserver I: ( which is map drive of the webserver ) , when i have tested the script in my local pc , where i kept the file in D: ( local drive in my pc ) it wokred fine , but when i tried in webserver it says path not found ( the web server is Windwos NT based )
this is the path which i am using in a script
"I:" & "" & 123456 & "my folder"
what i found that if i use only I:123456 it is able to reach to that folder , but after that its unable but if i rename "my folder" to "myfolder" it reaches that means not able to read the spaces in folder name
I want to read and write key'ed cookies from both javascript and ASP.
I can't find any javascript that reads and writes cookies with keys,
so that it is compatible with ASP like the following:
<%
Response.Cookies("user")("firstname")="John"
Response.Cookies("user")("lastname")="Smith"
Response.Cookies("user")("country")="Norway"
Response.Cookies("user")("age")="25"
%>
If anyone has the javascript code that can read and write such ASP
keys,
I am trying to read string from a .rtf document using asp and then
displaying it in IE. I am getting all the rtf tags along with the
string that I am trying to read.
Please shed light on how to read the rtf string into the IE without
losing the string formatting.
Is it possible to read a registry key in ASP, and use the value in an application via a session variable. I'm using II6 on windows server 2003.
I'd like to create a key in the registry (under HKLM) and store a value (connection string for example).
In the ASP application, read the value and store it in a session variable with global.asa.
How do that and which right to access the regitry (IIS_IUSR) ?
Provider error '80004005'
Unspecified error
/falconwood/properties.asp, line 72
adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("properties.mdb")
on this line.. it seemed to be workin just a minute ago.whats up with it?
My hidden field is
Code:
<input type=hidden name="action" value="login">
<input type=hidden name="ret_page" value="<% =request("ret_page") %>">
and my link is
<A href='register.asp?ret_page=<% =request("ret_page") %>
But the ret_page appears as /vfolder/Content.asp?ContentID=700.
How would I get rid of the /vfolder/ and just have the content.asp?contentID=700 alone.
I'm getting read only error while executing an asp script which updates ms-access db. I have given all the read & write permissions to the db & yet it is giving me that error. Here it is :
Error Type:
Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only.
/secr/tender/tlogin.asp, line 160
How can I make all the fields on my form read only based on a users logon account? I have field in my Microsoft Access table that is yes/no for read only access. Now how do I read from that field and code my ASP file.
View Replies View Relatedi recently just uploaded an access database only to find that it has read only persmission, so any adding, updating, deleting etc.. doesn't work anymore. the file became read only when i uploaded it. How do i change the read/write access to this file online?
View Replies View RelatedI have form which displays a customer record and a datagrid of that
customer's orders. I want to read the value of the OrderID (which is the
keyfield), write it to a session variable, redirect to another form where I
read the session variable and display the order detail.
How do I read the OrderID value when the user clicks on a select button in a
particular row of the datagrid?
Im just not sure how to go about it because im new to asp. I want to write an ASP script that will read a money amount from an SQL database and when money is taken through a payment it will change the value in the database.
View Replies View Related