I'm trying to set up a very simple asp page that sends me an email when it runs. This is just to try and get CDOSYS working so I can send out emails from my website.
Everything is fine right up until I execute the ".Send" method. What could be wrong? What does the error mean?
The output from the source below is: "test1 error '8004020f'
When the Form is submitted I use the Date() and Time() functions to put the date and time into the Body part of the e-mail. The time reported is three hours earlier than the time at which the Form is actually submitted.
I understand these functions are evaluated on the server so the server must be in a time zone three hours earlier than where I am . Is there any way I can get the local time at the location where the user is actually located. ?
I'm working on finishing a project the was started by someone else who no longer works here. Its an asp page that takes a whack of numbers form a db, and makes em look all pretty in tables. (its a remake of an excel spreadsheet) the problem is some of the numbers are not apearing properly. I'm thinking it's because they used Round() sometimes and formatNumber() other times. the question is... do these functions handle numbers differently? i know formatNumber can do more then just round but i just need it to make the numbers 1 or 2 decimals.
how do i use the function formatnumber and response.write object together. I have a script that checks to see if a record set is empty before using the response.write object.
<% if (ewallet.Fields.Item("purse").Value) <> "" then response.Write(ewallet.Fields.Itempurse").Value) else response.Write("Empty") end if%>
What i need to achieve is to format the "PURSE" field
<% if (ewallet.Fields.Item("purse").Value) <> "" then response.Write(Formatnumber(ewallet.Fields.Item("purse").Value), -1, -2, -2, -1) else response.Write("Empty") end if%>
But this gives an error, when i use both response.write(formatnumber(field_value)).
is the error i get, and my mind is blank due 2 working 2 long but help much appreciated, i am just messing but would like to save a binaryfile with ADO.
In my application I get the error 'function sequence error' when i try to use RS.MoveFirst . This happens only in one screen but the same doesn't happen in another 2 screens where i am using RS.Movefirst. Code:
I use: ----------------------------- dim strText,pos strText = "This is a test!!" pos = Instr(strText,"a",1) response.write pos ----------------------------- and i get:
I keep getting an error at the line in bold. It says some crap about "Type incompatible" and wont even print out the next line. What the hell is wrong with my code?
I used this to sum column with nulls and it worked fine but then when I tried to do the same with the next column over, I get "IsNull function requires 2 arguments error".
In my select statement:
Sum(IsNull([1st Qtr],0)) as Sum1QN
The one above worked fine, so I thought I would just do the same for the next column over like so:
Has anyone seen an error like this before? If so, what could it be? I don't use any stored procedures. (SQL2000 and ASP). 007~ASP 0101~Unexpected error~The function returned |.
i am making a recordset paging in asp. the problem is the Previous Page, Next Page, and the Last Page wont work. only the first page is working. i have found out that the "pagenum" value is always equal to zero(0). could anybody help me with this problem? Code:
I have a long list of checkboxes and a text field is associated with each checkbox. So I created a loop that should get the value of each text field that has a marked checkbox next to it. Here's my code
for each g in gildi aths = Request.Form("rok_" & g) ... next
then I create a query with the value and send it. Anyway here's my problem:
the aths variable gets the correct value on the first iteration but is blank every time after that.
I am using asp to retrieve data from an SQL Server database and display it on a web page. The data in the database has been formatted using multiple carriage returns however, when the data is displayed on the page these carriage returns are lost.
I am trying to run a command line from an ASP page. I am using windows 2003 with IIS6. I am able to get this to run on my local machine (Windows XP IIS5). Here is my code:
SQL="SELECT title,body FROM cinema WHERE date_end > #" &date()& "#"
cinema is a table which contains announcements about cinema title,body (txt fields)are columns of my a table called cinema date_end(DATE/Time Field): is a date (DD/MM/YYYY, short format).This date shows when the announcements expire .But SQL returns all the announcements that the table contains even those that have already expired. Why??I cant find any mistake.
I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to be able to remove the carriage returns (enter key... vbcrlf...) from the input so that somebody doesn't do something like fill the textarea with 100s of keypresses of the enter key and end up spitting out tonnes of blank pages on the fax machine.
I am using asp to retrieve data from an SQL Server database and display it on a web page. The data in the database has been formatted using multiple carriage returns however, when the data is displayed on the page these carriage returns are lost. Does anyone know a way around this problem?