Error Checking A Form

i'm making a forum, and previously i was submitting the form to an asp file, which would check for errors -- if there were errors, it would redirect back to the form with error messages to be displayed -- if it was error free, the message would be written to a txt file.

but then i wanted to put in a preview message page, and so error checking and passing values between the three pages is becoming tricky. so i'm at the point where i'm starting to use javascript to error-check, which works fine for making sure the input is good, but i don't know a good way to notify the user that there are errors with javascript. alert messages are unprofessional, and i can't just add text to the page using javascript.

i'd prefer to use only asp, and i'd prefer it if i didn't have to use an extra asp page JUST to error-check. as it is now i have these pages involved in adding a new subject:

post subject (has the form for the subject and message; the user can click either post message, which will directly write the message, or preview message, which will bring them to a page which displays the post as it would appear once written)

preview message (regardless of what the user clicks, it would come here first to do error checking, and depending on what the user clicked it would either redirect to the page which writes the subject, or display the message;

the problem is, if there are errors with the form, i need to point the user back to post subject without losing whatever info they have already entered. the only way i know how to do that is by submitting a form [i can't use a querystring because it won't maintain the message if the user entered multiple lines in the message])

add subject (this does the backend writing of the message, and is only accessed if the fields have made it through the error-checking)

any solutions in mind on how to pass the field values between these three pages?? or is there a better way i can do error checking??

View Replies


ADVERTISEMENT

Basic Error Checking Within ASP In A Form

how to create a form that would handle basic error checking within the ASP itself?

View Replies View Related

Form Checking With Reg Exp

The script is designed as a form validator which checks fields for various criteria and then sends a mail with the form contents. Since 40 different forms will be plugged into this script, there needed to be complete seperation between the two.

I've managed it so far by checking for required fields by putting the word 'required' into the name of the field. The script then sources out any fields which has this text and checks them to see if they are filled out.

The problem I've come across now is that I need to check for field length. My idea was to put the amount of characters needed into the name of the field in the form and then have the script check with a Reg Exp. However, Im not too sure of the regular expression needed to check for this.

Can someone suggest one? The one I have at the moment is [1-14] but say I had a field like this: <input type="text" name="passwordrequired12"> That would match bout for 1 and 12. Any ideas?

View Replies View Related

Checking A IP Sent From Form

I have a form field that will contain an IP based on a TeamSpeak or Ventrilo IP. What I need to do, is check to make sure there are 4 groups of numbers in the form field. Or, check to see if the entry contains 3 periods. 1.2.3.4 <--- example there are 4 groups, and 3 periods.

Now of course, the IP can be as large as 4 groups of 3 numbers, so I can't check string length. how would I check this and validate it on my asp processing page?

View Replies View Related

Checking A Form

I need to check a form to make sure the ID is between 8-15 characters and the password is between 8-10. I can create the form, but am not sure how I could check these lengths. i'm sure there is some simple code and also I do not know where I would put it.

View Replies View Related

Checking Db Before Submitting A Form

I have a form that currently input data into an access db. The first thing that I would like to happen when the Submit button is clicked, is to check one column in the database to see if there are any duplicates before uploading any data. So my question is, how?

View Replies View Related

Checking Fields In A Form

How do I check the field for example zip code to make sure that it has 5 digits?

View Replies View Related

Checking Form Values

Is there an easy way in ASP to check the value of a form element, like a hidden field, of the current page, not the previous page?

View Replies View Related

Checking Form Field

I'm trying to verify a request.form("blah") with a field (value) in a recordset taken from an Access Database. Basically what I'm trying to do is once this NUMBER is entered into the form object (textfield), check a database to see if this number has been used (i.e. in the database) and if so redirect them to an error page.

I thought this would be rtight, but doesn't seem to work

If rsTeddyCheck = Request.Form("PersonalID") then
response.redirect ("Error.asp")
Else
process.asp
End If

View Replies View Related

Checking For Nothing Entered In An Asp Form Post

How do you check for a empty value from a form?

lservice = request.form("pservice")

if not isnull(lservice) then <== this doesnt work.
tried "" empty string and it still didnt work.
......

I'm having problems with the fact the user didnt enter anything. The field is optional.

View Replies View Related

ASP Error Checking ...

I am writing a script that lets me brows the contents of a web server. The problem is the account that is running ASP does not have permissions to every folder. Don't ask me why ... I have no idea but it can't be changed.

What I would like to do is perform a check for:

Microsoft VBScript runtime error '800a0046':Permission denied

And if this happens display an error message saying they do not have permission to view this directory. Code:

View Replies View Related

Error Checking Fix

How to re-write this so it can error check for each individual field. Username, email, password etc.

This is written and validates if the user already has an account in the Database. then it returns the messaage below. But I would like to indentify if it is the username that exist or the email or password. Code:

View Replies View Related

Error Checking

why this string fails to check if a user does not enter any data in a field?

<%
' Declaring variables
Dim make, model, description, price, data_source, con, sql_insert
' A Function to check if a field is empty
Function ChkString(string)
If string = "" Then string = " "
ChkString = Replace(string, "'", "''")
End Function

' Receiving values from form
make = ChkString(Request.Form("Make"))
model = ChkString(Request.Form("Model")) and so on and so forth...
%>

View Replies View Related

Error Checking

what would be the best way to error check a page after I clicked submit but before I go on. Example:

I have a page that dynamically puts text boxes & lists on a page depending upon which button I click on the main menu. What I want to do is check the text boxes for correct values (most likely before I go to the next page which is the Update page). But since I am dynamically creating the page & text boxes I don't know what the names are... I am doing the dynamic page through server side script.

This means that almost all my variables names and anything associated with the dynamic page are in the Server Side script and can't be reached by Client Side script. ok long story short which is best to error check a dynamic page before updating the info on that page. Server Side | Client Side script?

View Replies View Related

Checking Error Code

I'm setting up a simple competition entry system in ASP where users can enter their name and email address to be added into a prize draw. It's pretty simple stuff, with the data being added into an Access DB table.I've created an index on the 'email' field to stop the same person entering more than once (unless they have more than one address, but let's pretend that's never the case ).Instead of doing a SELECT query to find whether they've entered before, I simply want to attempt to INSERT the data into the table, and if it returns an error along the lines of "no duplicate values in the index" it would give the user an error.My question is, is it possible to display a user-friendly version of the standard ugly ASP generated error message when this error is detected? Or am I stuck with the incredibly unattractive error message we're used to?

View Replies View Related

Error Checking In ASP Code

In Kevin Yank's book, he shows how to put in error checking at various stages of working with a database: connecting, querying, etc. I presume the same general principles apply to ASP/SQLServer but I don't know the code. Can someone tell me at what stages I should be checking for errors and some generic code that I could use at each stage?

View Replies View Related

Form Validation(checking For Digits And Blank Spaces)

i have a form for users to enter their name password and e-mail,i am currently using javascript to check that all details have been filled,

if(myForm.fname.value=='')
{
alert("Plz enter a first name")
return false
}

This works if the field is left blank however if the user enters numbers(1,2) or spaces i.e.(" ") how do i deal with these,i also need to check that the e-mail contains "@" and "."

View Replies View Related

Error-checking And Query-results After Execute

After commands like:

tmpDBconn.Execute("DELETE * FROM mytable WHERE rc_id = 10" )
How do I check for errors?
Is there a way to check the results?

OR:

Set rsCatCount = tmpDBconn.Execute("SELECT COUNT(*) FROM cat WHERE key_id = 10 AND cat_id = 6")

How do I get the count? Do I use rsCatCount(0)?

View Replies View Related

Error On Form With VBA

I have an error on a webpage of mine since I added a function to save the data in Proper Case-- but a smarter proper case. The page is not displayed so I don't know where the error is or how to fix it (obviously.) Here is the code:

View Replies View Related

Error In My Form

Syntax error in FROM clause.

/MSFF/CheckLogin.asp, line 14

That is the error that I am getting. It is driving me nuts because I have cut lines out and just printed the SQL statement and it seems to be working just fine. How can it be an error in my "From" clause then? I don't get it Code:

View Replies View Related

ASP Form To Mail Error

I have an ASP script that collects information from a form on my site and
sends it as an email. The ASP script is calling CDONTS.DLL which is
registered on a win2k3 server with Exchange server running.

When submitting the form there is an error when it comes to the 'mail.send'
part of the script. I have given all the necessary folders the correct
permissions as per microsoft however I still get the same errors.

I believe it is something to do with permissions because if I disallow
anonymous access to the site and access it through the local network as a
logged in user the script works fine.

View Replies View Related

Submit Form Without Any Error

I am trying to provide some simple validation using Javascript on my form. However at times the validation works and at others it doesn't and submits the form without any warnings even though it contains invalid values. And sometimes it displays the warnings and submits the form.

what else I can do (I want to provide the validation server-side) I'd be very greatful of any advice on the subject.

View Replies View Related

Form To Email Error

I am using formmail.asp from www.brainjar.com on a webfusion server. I get this on submit: Form could not be processed due to the following errors:

Email send failed: The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available .

have beens searching web for hours and webfusion support is v slow! I have double checked the username/password and mail server variables.

View Replies View Related

Form Processing Page Error - BOF Or EOF

I have three pages that I am working on at the mo. A select record page that selects a record to be updated. A form page that allows the selected to be amended, and an update form processing page.

With the form processing page I am getting an error which I can't seem to get around- the error is-

"ADODB.Recordset error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. Code:

View Replies View Related

How To Stop An Error Form A Message Entry

Microsoft OLE DB Provider for ODBC Drivers error '80040e14'

[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression ''I think this experiment is about judging other people on the basis of one's first impression. I don't think it's fair to judge ohters based on first impressions. Most of the times first impressions are crucial in finding people's attitudes or personas, but '.

I am 99% sure that the problem is becase I have a text field box and people are typing in commas, apostropies, ect. How do I get around that? Code:

View Replies View Related

Error Inserting Form Data Into Database

I am trying to insert data from a form into a database and i am getting the following error:

Microsoft JET Database Engine error '80004005'
Operation must use an updateable query.

The code that i used can be seen below: Code:

View Replies View Related

CDOSYS Mail Form Runtime Error

I have downloaded the script from brainjar but it needs a bit of tweaking because my smtp host requires authentication, I have added what i feel are the relevant lines of code but these are giving me a runtime error

These are the relevant lines of code, the 1st line giving me the error:

objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'whether you use a authentication on the server

objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = *******
objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = *****

View Replies View Related

Error: Cannot Call BinaryRead After Using Request.Form Collection

I have the below page which i use to add the information from a form to my MySQL database. It works perfectly fine when I don't add the code at the top for sending an email. Can someone be kind and have a look at my code and let me know where I am going wrong.

When I add the email code at the top the error I get is :
Error Type:
Request object, ASP 0206 (0x80004005)
Cannot call BinaryRead after using Request.Form collection.
/change_management/area/upload.asp, line 92

upload.asp I use for addding an attachment to the form ....

View Replies View Related

Email Form - VBScript Runtime Error '800a0046'

my code:

dim msconn

DIM mail, objMail

Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = "admin@abc.com"

objMail.Subject = "This is a test"

objMail.To = "webmaster@xyz.com"

objMail.Body = "this is a test email from abc.com"

objMail.Send

Set objMail = nothing


This code works perfectly well from any machine apart from the domain controller. On the domain controller, i get the following access denied error message:

Microsoft VBScript runtime error '800a0046'

Permission denied

/Emailer.asp, line 310

I have given full permission to the drop folder in the mail root as guided in other sites. It's still not working.

Can anyone tell me where i'm going wrong? anything else i can try?

View Replies View Related

Form Submit That Must Report Back To The Same Page An Error...

I have a form submit that must report back to the same page an error if a pair of radio buttons inside the form block are not checked. But data from the buttons must still be sent to another page.

I tried having the form send data back to the same page, then putting the data in session variables and redirecting to the page they have to go to. But apparently the session variables are having unpredictable effects on the very complex page I'm sending the data too.

I'm thinking about using Onsubmit = somefunction inside of the <form > . I've tried javascript but I haven't found the right code yet, and also I'd rather avoid the popup alert box, it is inconsistent with the rest of the website. Perhaps an ASP subprocedure could do the trick?

View Replies View Related

Showing User Error Message For Incomplete Form Fill Out

I have a form that I want the user to fill out. If they dont fill out the whole thing, I want the form to reload and an error message to be displayed at the top of the page. Here is the jist of my code:

View Replies View Related

Trying To Pass Form Data Gets Me: Syntax Error (missing Operator) In Query Expression

I'm trying to pass a piece of data i get from a query using a different form's passed values. This is how I get the data into the new form and how I try to pass it to the next asp page query.

<td valign=TOP width="168"><form action="HouseDetail.asp" method="post" name="MLS" id="MLS"><input name="MLS" type="hidden" value='<%=oRs("ML_Number")%>'><input name="Submit2" type="submit" value="Get Details"/></form></td>

The value='<%=oRS(ML_Number")%>' generates a real value like '2403943' - and the field I'm trying to use this value in the qry is expecting a number. But even passing the number without the single ' at both ends generates the same error message. Code:

View Replies View Related

Checking For Value

I have this table that has two columns Department and RecId. what I am doing is I need to give access to different people in different departments. So if I am in billing I say billing 76 which is my rec id and than if I also need acess to accounting I say Accounting 76.

So now in my asp page I open this records set to check and see who has access to what departments and give them the access Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved