Sending A Text Message Through The Web
I would like to send a text message through the web using the code below. Currently, I'm trying to modify this code that sends a user an e-mail with their forgotton password.
I will not be sending a password once I get this finished. This is strictly for a demonstration I have to give for a college class. Here is my code:
View Replies
ADVERTISEMENT
hav been using serverobject sendmail for close to 5 years but recently giving strange errors. SO for the time being decided to use this code ...
View Replies
View Related
I have a form (on server #1) that is filled out by the user and it sends the info from the form to another server (server #2), adding it into an Access table. How do I direct a response back to the user from that asp page on server #2?
View Replies
View Related
I'm trying to send email through a form I created and everything works except the email portion. It's not sending the text message. Code:
View Replies
View Related
Is it possible to send email both as plain text and html in the same email
using asp?,,,if so...how do you do it and what do you need to set up to do
it.
View Replies
View Related
In my ASP application, i need to send a formatted text mail (i.e with newline characters).
here in my application i used a function in javascript which construts the mail body Code:
View Replies
View Related
I have email form on a website and there is some fields that have german
characters in it, like the umlat and so on, when I look at the email that is
retuyrned I get the following message Code:
View Replies
View Related
I have that form that send email to subscribers. Even if the specified option is set to "TEXT" I still see the HTML coding in the message... Tho when I look the source of the message I see "X-Mailer: JMail 4.5 by Dimac
Content-type: text/plain; charset=iso-8859-1: and all the <br> code are that way : <br=3E
my jmail code:
View Replies
View Related
I have this problem in controlling a the text in a Text Area. How can I do
that for example the field size is 200, when it reaches 50 it automatically
goes to the next line. Bcoz im having problem when viewing it in my report,
it continuesly views in a strieght line and im having problem in printing.
View Replies
View Related
When using ASP's FileSystemObject to create text files, I am unable to get user submitted text (in Hebrew) to save as anything other than "?????". The text file is being saved in Unicode and setting the CodePage in ASP proved unsuccessful. Strangely, hard coded Hebrew text in an ASP variable does add to the text file correctly.
Any ideas of why this happens and how to get it to work correctly?
View Replies
View Related
I have a text area which I want to limit the number of words or number of text entered into it. Is this possible?
<textarea name="textarea" cols="35" rows="5"></textarea>
In the text area above, can I say limit the person filling in the text area to say 100 characters?
View Replies
View Related
I have a form on asp page that pulls info from a DB when the page loads.
It them puts the info into text boxes on the page that are editable by the
user.
The only problem I have is say in the description text box it should
read "HP Laserjet 5Si" , it always cuts the text off where it just says "HP"
.. It does this on all the text boxes? I can't seem to figure out why it
is doing it. Here is the sample code:
With quotes around <%= vdesc%>
<td><input name="desc" type="text" id="desc" size="45" value="<%=
vdesc%>"></td>
And I tried it without.
View Replies
View Related
I have text in a field coming from a database. The text has various
forms such as:
text1
text1 or text2
text1 or text2 or text3
text1; or text2
text1; or text2; or text3
etc...
how can I parse this with a reg ex? I tried this:
(.+);? or
but it only captures 1 submatch (text1) and only if theres an "or"
after it
I'd like to get 1 submatch for each piece of text separated by the
"or", just the text itself if there is no or.
Anyone know how to do it?
View Replies
View Related
I have this problem in controlling a text in a Text Area. How can I do that, for example the field size is 200, when it reaches 50 it automatically goes to the next line. Because im having problem when viewing text in my report, it continuesly views in a straight line. Can you give me ASP code for that.
View Replies
View Related
I have text - ARI Promise, when I hover over the text I would like a box to appear with the Promise information. It would be several paragraphs that need to be formatted with paragraph and bullets. Is this possible to do? If so how would I go about it?
View Replies
View Related
I'm using CDO.Message to send emails and i'm using the .CreateMHTMLBody to send an html page, the only problem that i have is that when you view the email, you notice all the images that are in that page as attachments !!!! the email loads fine, but is there a way not to show the images in the attachments line
View Replies
View Related
I have a asp page that sends a excel price list to customers, this worked
fine untill now, but now when i sent one to myself it arrives as a dat file.
Does any one know why, and how to fix it, is it a problem with my emailk
reader (Outlook) or is it some thing to do wih Exchange?
View Replies
View Related
I am using CDO Message to send mail from ASP page. I find that all the mails sent goes to bulk folder or appear as spam message in both yahoo and gmail. How can i prevent that.
View Replies
View Related
Is There a Message Box in Active Server Script like in
Visual Basic?
The four books I have show it the same as VB but I get a
Message "Permission Denied"
MsgBox "Message"
View Replies
View Related
does anyone knoe how to make a message box in asp vbscipt??
I am using
msgbox hello
or
msbox "hello"
to try and get a message but i get the error:
Error Type:
Microsoft VBScript runtime (0x800A0046)
Permission denied: 'msgbox'
change.asp, line 17
View Replies
View Related
When I load this script it says, �No record found�. This message suppose to display when I put something in search box and there is no record that matches in database. Everything else works fine. How can I get read of �no record found� message when I load page Code:
View Replies
View Related
I am using CDO.Message object with code below. When I execute the .Send command, I get the following error.
Error: -2147220973
Description: The transport failed to connect to the server.
Note: The SMTP Server and the IIS Server are the same machine.
Anyone come across this error message in the past? This error also occurs when I use Method #1 where I use the schema reference provided by Microsoft. Here is the code:
View Replies
View Related
I've created a form that e-mails the response to a person. Problem is that I want to include their name in the From attribute. Unfortunatly, the .From doesn't like spaces between strings. Are there any suggestions how to fix this? Code:
View Replies
View Related
I use CDO.Message to send mail. The problem is, CDO.Message will send to any malformed address, (eg. smtp:email.address@domain.com) and no errors are thrown.
View Replies
View Related
I want to delete a record from sql DB in asp page.. When the word "delete" is click, there will be prompted by message box about want or not to delete the record.
If the message box is clicked "yes" then record will be deleted. If the message box is clicked "no" so the record will not be deleted.
I've tried to use vbscript, but it didn't work, because I don't know how to combine this vbscript with ASP which is should connect to DB too.
If anyone who read this, has a complete coding for solving my problem, n would like to share with me ...
View Replies
View Related
Does anyone know if it's possible to send an email out in the Session_OnEnd script?
I Know it's possible to create a connection object in Session_OnEnd but unsure if it will create a cdo.message object.
View Replies
View Related
My ASP is limited and I can't recall how to pop up a simple message box
(with OK button).
I want to use them for debugging some code.
View Replies
View Related
im making an online course and on a certain page there are 3 items that each user needs to open and read. I want to check and see if they have opened all of these items before they can continue, so I would like to have a msg box pop up when they try and leave the page if they havent opened all 3 items first.
I have the database set up so if i know if its they're first visit to the page, and it knows when they open each of the 3 items, I just dont know how to get a msg box to appear when they try and leave the page. I know there is no msgbox fuction in asp.net, and i have tried javascript alert on page unload, but i get a "Response is not available in this context." error.
View Replies
View Related
I am using CDO Message Class for sending email.My program is working properly.But some times it sends only part of mail.
I am sending through my mail server using authentication.Every thing is fine.I sending mail in html format.I am not understading the reason behid this problem.is there any limitation of size of message to be sent?
View Replies
View Related
i recive this error when sending the email that uses cdosys
------------
CDO.Message.1 error '80040213'
The transport failed to connect to the server.
/admin_SubscribedCust_email_processor.asp, line 42
-------------
line 42 is --> myMail.Send
View Replies
View Related
Can someone explain the with/end with operative used with cdo.message.I havent come across this before.
View Replies
View Related
I have created a page which loops through a recordset and creates a new row for each record.This row contains an image which the user can click to delete the record that is displayed in that row.
When the user clicks the delete image (link) I wish to make a message box appear with YES/NO buttons and a "Question" Icon.The message box will display "Are you sure you want to delete record x from the database?"where x is the primary key from that table (objRS.Fields("RecordID") )
If the user clicks YES it will redirect the user to a page.If the user clicks NO no action is performed.
View Replies
View Related
How do i insert a messagebox in asp?
View Replies
View Related