Protocol Is Unknown
I am trying to send an e-mail using CDO I get this message when trying to send an e-mail.
I am using the object
Set ObjMsg = Server.CreateObject("CDO.Message")
CDO.Message.1 (0x800C000D)
The specified protocol is unknown.
View Replies
Using CDO.MESSAGE, can e-mails in ASP be sent using the HTTP protocol instead of the SMTP protocol? If yes, then how? If no, then is there any other way to send e-mails in ASP using the HTTP protocol?
View Replies
View Related
I've got a site with an index page that has been set up to show my latest blog posts from the /blog.html page. From time to time (more frequent than I'd like) when I update my blog, I get the following error:
msxml3.dll error '8007000e'
Not enough storage is available to complete this operation.
/RecentPosts.asp, line 16
I've been told that this has something to do with my hosting company (godaddy) having a problem, but that seems odd to me. Can anyone here give me any ideas? Let me know if you need the URL and I'll post it here as well.
View Replies
View Related
i am doing a list of links for a modular website, i was useing a loop
to make a form for the links and link description so that i could have
as menny as i liked and called the text box link<%= no%and
description<%=no%and no goes up each time the loop happens.
my problem is that i dont know how to display them on the next page.
how do i request link(X)? i have been looking at this problem for hours
can someone help?
View Replies
View Related
I have two pages of aspx one is content.aspx and other is framing.aspx
I want that I have 3 diffrent link on my content.aspx
like www.yahoo.com
www.google.com
www.msn.com
and on framing page there are only frame on top my header, on bottom my footer:
but i want that when i click one of the link on content.aspx it must be opened in middleframe of framing.aspx
I have created link using <a href="www.yahoo.com">yahoo</a>
same like this for other 2 .
View Replies
View Related
I am getting this error that I have never seen before. Its strange. Everything else works fine. Any Ideas?
Microsoft OLE DB Provider for ODBC Driverserror '80040e10'
[Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
/ASP/Error.asp, line 56
Here is the code:
View Replies
View Related
I have an asp application running with the charset set to windows-1252.Recently, my customer complained about some unknown characters(rectangulars) appeared on the screen.
Later I found out from database that the unknown characters are supposed to be coma (,). I then tried to set the charset in all pages to UTF-8 but it did not solve the problem. I have a problem debuging since my testing machine does not have this problem.Is there a possibility that font selection such as sans-serif can cause this problem?
View Replies
View Related
got the following sql
Dim varEmail = Request.Form("email")
Dim sqlQuery
sqlQuery = "SELECT * FROM users_tbl WHERE email ='+ varEmail+'"
However this does not seem to work as expected..what am i doing wrong?
I tried
sqlQuery = "SELECT * FROM users_tbl WHERE email =" + varEmail
But this doesnt seem to work either..when i try recieving records from the database it just says unknown column etc error
View Replies
View Related
I'm getting an http 500 error message, and I can't seem to find where (since it won't give me line-errors). Yes, the host supports asp
Here is the code, maybe you can find an issue? Its not too long: Code:
View Replies
View Related
I want my asp page to upload all files from a certain directory on the client pc onto the server.
Code:
set FSO = CreateObject("Scripting.FileSystemObject")
set F1 = FSO.OpenTextFile(???) -> I only have the directory here
View Replies
View Related
I need to create a script that will collect any variables sent by a form.
Reason: A company that I work for wants to have a script that they can pretty much send any HTML form to that will send them an email with the results. So if they make a new form with different form fields next week, they can point it to the same script.
Is there anything in ASP that can "Just collect Anything/Everything" that is sent from the form?
View Replies
View Related
I have admins who create reports with titles that my code then creates a field with that title in another databse. The admins also apply permissions to staff whether they can see that report or not.
My problem is my code doesn't know the name of these new fields, is there any way in ASP to interegate the access field names in a record set?
View Replies
View Related
I have been writing a photoalbum in ASP and I am trying to receive an undetermined amount of files.
A more detailed explanation:
The client side (Javascript) generates a new file upload box as soon as the file in the first box is selected...the name of the file upload boxes is bestand[] so that the input is received in an array.
Now I am trying to receive all the files with ASP and store them on the server....
View Replies
View Related
I have a form that is dynamically generated since it is populated with values retrieved from a database. The form can of course also be submitted, which is where I run into some problems.
Since I never know in advance what the length of the form (or for that matter what the different elements' names and values) will be I don't know how to write the code in "receive.asp" to retrieve all values from the form correctly without excess use of "request.....".
I shouldn't have to write requests for every single potential element name that is stored in the DB. Please note that the form can sometimes also contain radio buttons and check boxes, even though they are not present in this short example Code:
View Replies
View Related
I have a database driven (ms access) website which runs fine on my computer (win 2000 iis6). However, on uploading, some pages am receiving the following error
"An Unknown script error occured while processing your request."
......
View Replies
View Related
Ok my boss wants to know if there is a way to display an unknown # of pics from folder onto a web page ASP using VBScript or JavaScript... doesn't really matter.
You don't know the names of the pics or how many are in the folder just that you want to display all the pictures in the folder...
View Replies
View Related
Could some help m figure out to strip an unknown range of characters in a path between the first "/" and "/" found in a folder path somewhere on my site. Code:
View Replies
View Related