Blank 500 Error

I'm getting some errors in my .asp code somewhere but I can't seem to figure them out because all I get is a blank 500 error screen. I don't get any description of the error, just a blank screen so I don't know what the problem is.

Just wondering if there's a way to get the results easily because I do not have admin rights to the server so I can't make a custom 500 error page or i would.

View Replies


ADVERTISEMENT

Setting Up Error Message For Blank Field

I set up a form, asp code for the form, and an access db to store the data. It all works fine. The only problem is that I want to set up an error message that reads something like "Please fill in the blank field and then resubmit". Code:

View Replies View Related

Blank Form

What I need to know is how to click on a button that is labeled NEW, as in new record, and have the current form open to data input. That is a blank record. After the user then inputs the data to all the fields on the screen and hits the SAVE button the record will then be placed into the database table.

View Replies View Related

Auth_User Blank

I am trying to use AUTH_USER from request.servervariables but the field is
blank. I am using Windoze server 2003 with IIS5. I know there is a fix
because I did it a long time ago with our old NT server running IIS4 but I
cant remember how I got it to work. We are all authenticated users on our
Domain so this is available, I am able to get IP info and such. I seem to
remember some kind of ASP code that did the fix by altering the way the web
server displays info.

View Replies View Related

Blank Asp Pages?

The host Im useing is useing plesk as its control panel if anyone has ever heard of that...I hadnt until this site.

when I try to load a asp page on my site it just loads a blank page.

The page is a data base editor page that I had built useing fp 2002

all my other asp pages load fine.

But this one just loads a blank white page

No errors no nothing. Code:

View Replies View Related

Blank Data

I had a problem for a while where data was added on its own, and BLANK data. I found out it was because i was opening the processPage.asp to see if it was working, so that was inputting data out of the form that wasnt there. So i get blank data. Is there anyway i can make the process work ONLY if there is data in the form?? Code:

View Replies View Related

Blank Lines

I am creating a directory of suppliers.I have a form that collects data - business name, address1, address2, town, city, county, country, postcode.
The data is stored in separate fields in an Access database. Another page is used to display the data, one field per line. However, if some of the fields are blank, I want to suppress the blank liens as at the moment I am getting:

My Business Name
1 High Street

Any Town

Any County
Postcode
United Kingdom

View Replies View Related

Blank Drop Down

I have a drop down list, values coming from a db, when I come into the form I want it to have no value - how do I do this? Also, if I want to capture the value that a person selects from the drop down list do I need to use a session variable if I want to print it to the screen after they select it?

View Replies View Related

Blank Date

I want to clear the date in a field in an access table by entering a blank. Does anyone know the syntax for that in the select statement? This is via an asp page

The select statement I am trying to use
<code>
strQ ="Update Inquiries set ShutOffDate= 00/00/0000 WHERE CustomerID = "&CustomerID&""
</code>

View Replies View Related

Blank Pages

We use Vignette V5.6 to display our site. In our CMA site, we have a page which has FRAMESET and in one of the frames we call a ASP page. There seems to be some problem that the frame shows the ASP page is blank. When we restart the IIS it works fine. But after some time it again shows the blank.

If we get one blank page, all the asp pages under the same virtual directory, called in the Frame shows blank. FYI. The Vignette template which contains the frame is marked for NO caching & For itnernal use only.

View Replies View Related

Blank Fields

All my fields give that error when I try to leave it blank when inserting a new record. The field is not required in the database, so what do I have to do to insert it as blank?

SQL:

Code:
INSERT INTO Tablename (REQUIRED, NOTREQUIRED) VALUES ('tag', '')
Error:

Code:
[Microsoft][ODBC Microsoft Access Driver] Field 'Tablename.NOTREQUIRED' cannot be a zero-length string.

View Replies View Related

Blank Querystrings

I want to know how I can check if a querystring exists, whether it has a value or not.

Basically I would like to use test.asp?login without having to use ?Login=blah.

View Replies View Related

ASP Pages Blank Until Refreshed

I have an online application made up of ASP pages (IIS 5.0 on Windows 2000 Server) drawing data from a SQL Server database. Most of the time, everything works exactly as it should. Connections are opened to the database, queries are run and data is returned and writen out, connections are closed, etc.

However, every so often a page simply won't load. It isn't trying to load and then timing out or anything, it's like it's ignoring the page entirely. It shows the correct URL in the address bar of IE, but there's nothing but a blank white page displayed. Viewing the source of the blank page reveals that instead of the correct code for the page, we get this: Code:

View Replies View Related

Detecting Blank Fields

I am writing an application which when the code first loads there is a form which all the fields are blank. I then need to test some date fields to check if the end date is before the start date etc. The form fails to work. So I then wrote a test asp page which has a single box I then use an If...

Else statement if it is Blank then do nothing if it has data in the text box then display a message. The form works ok until I input text and then it does not detect any input text in it and therefore does not display the message. This is totally the oppoisite of the original application which does not detect the form is empty. Code:

View Replies View Related

HTTP_REFERRER Returns Blank

The code referer = request.servervariables("HTTP_REFERER") used to return a
requesting URL. It now returns blank. Anyone any idea what is happening?

View Replies View Related

Words After Blank Space

I retrieved some data from the database and put it in a textbox but the words after the blank sapace cannot be shown, why is that?
Name = rs("requestor") 'where the name is "Sam Siew"

<TD><INPUT TYPE=TEXT Name=requestor size=12 Value=<%=Name%>></TD>

In the text box, it only show "Sam".

View Replies View Related

Excel Document Blank

Ok, I have two pages. One that displays the table (page a), and one that exports the table to Excel (page b). When you click the "Export to Excel" link on page a, page b automatically opens up the save/open dialogue box for the Excel document.

Everything works fine on my computer (whether you choose to open or save), however on MOST computers it seems, the Excel document is blank with the exception of the column headers. Here is the code for page b which does all the exporting. Code:

View Replies View Related

Blank Data Is Inserting In Db

i am creating a dynamic protofolio page in asp. in that page admin will fill up all the fields . i am giving u the html code here Code:

View Replies View Related

ASP If Database Field Blank - Do Nothing!

what i am trying to do is when the database field is empty to not display the box (table) that is in my css file, whereas when there's something in the field i would like the box to display!!! So i'm basically trying to get a 'when field empy, do nothing!!! my code at present generates the box no matter whether the field is full or not!!! Code:

View Replies View Related

Validation For Blank Data

I am trying to do something that prevent user submit blank data to my database.

Here is my code: ....

View Replies View Related

Blank Database Entry

How do I change a blank database entry, so when I retrieve it blank I output a string say <i>N/A</i> into a table? Currently I have an if/elseif/else like this.Code:

if tf.name = "ID" then
Response.write(bla bla)
else if tf.value = null then
Response.write(bla bla)
else
Response.write(bla bla)
end if

*Note, where the word null is, I have also used the string "" and it still does not work.

View Replies View Related

Hiding Blank Records

I want to display the contents of a field with a label if there is data in that field. If there isn't then I don't want the label to appear.

I tried this:

<%If Venueinfo("email") = "" Then
Else%>Email: <a href="mailto:<%=Venueinfo("email")%>">Click to
email</a><br><%End If%>

But it doesn't seem to work. It seems to always display the label and link even though there is no data in that field.

View Replies View Related

How Do I Skip Blank Fields?

I'm using ASP FormMail to collect user info, but now I'm trying to figure out how to modify the code so that any blank fields from the form will not be displayed on the confirmation page/email. I tried to modify the code below in bold, but it gave me a syntax error. Code:

View Replies View Related

Blank Info From Forms

I built my form using .asp and Javascript. To retrieve the info from these forms, I use the .asp method, ie. request.form.

I have put validators, which work BUT I am still getting one of each form being sent to my email everyday that is BLANK.

View Replies View Related

Replace Blank Form Value With A Default Value

Just wondering if there is a way to give a default value to a form text box if it is left blank. I can set a default value for the textbox but then it shows up in the textbox and that is not what I want. I would like it just determine if the form is blank and change it to the needed value accordingly.

I'll ask a second part to this question as well in case I am going about this all wrong.

What I have is a search page where a user can search for names from a database. However if I have 5 textboxes of different criteria to search from then if all of them are filled then it would have to match a record in the database exactly....

but if only one or two textboxes are used then the other textboxes basically are now set to a wild card. In this case they would be "%". Also to make things more complicated I am using the frontpage DRW for the SQL query.

View Replies View Related

How To Send Blank Fields On Form

I have created a database were you submit a job by entering the fields which is fine if it is a site visit but if it is a phone call or remote help not all the fields need to be filled in but if there not filled in it wont submit the values to the database i get data mismatch error code is below.

I either need to be able to send them blank values to the database or ideally i wont to create a option box with Phone call, Site visit and remote help which when selected takes you to the correct page which have different values in the form to fill in.

View Replies View Related

Check To See If A Form Field Is Blank.

I have a page that processes a form and one of the fields might be empty as it's optional if it gets selected or not.

In my process page I would like to check if the form field news_image is empty or not.

How would I do this?

<% If Request.Form("news_image") = "" Then %>

Is that how you do it?

View Replies View Related

VBScript To Prevent Blank Emails

Below is a segment of an ASP file that takes information from an HTML file that contains a form and then passes the information in the form via the VB variable "Request.Form(*)". I have already placed form field validation on the client side via JavaScript code. The ASP file won't be called unless the user has filled in ALL information on the form. How do I validate the data on the server side .. in other words, can someone please provide me a few lines of code to validate that data has been passed to the "Request.Form" variable and if it is not, how would I perform an immediate exit. I am not very adept at VB scripting and I am trying to prevent anyone or anything from compromising the website by allowing blank e-mails to be generated, which is what is happening presently........

View Replies View Related

Detecting Blank Form Field

I' m getting a (0x80040E2F) error, if I submit my form, with blank textboxes
to my update stored procedure. The stored procedure expect values, so how
can I detect if a form field was empty. I've tried testing to see if the
form field is null, blank and to count the characters, but I can't get it
working. My SQL table allows nulls, so it's not that.

View Replies View Related

Ordering Records With Blank Fields Last

I've written an ASP page that pulls all records from a table. My query
is 'SELECT * FROM teacher ORDER by Class'

It is working fine... sorta. The table has about 20 records, but only
5 have an entry in the 'Class' field. The 15 records with the blank
class field show up first, then the other 5 records. Is it possible to
have the blank one show after the ones with an entry. Here's how my
results look, IOW. Code:

View Replies View Related

Ignore Blank Spaces For Drop Down ASP

i am currently working on code that searches an excel spreadsheet and displays results. Below is the code for the drop down. I was wondering is there a way to modify this to ignore blanks as when i use the drop down, it contains the blank cell spaces Code:

View Replies View Related

Time Stamp Into Access DB Comes Up Blank

I have been working on a form that updates an access database via a SQL statement. I believe I have the SQL part correct as when I do the response.write SQL I get what I believe to be correct. Code:

View Replies View Related

Logon_user Blank In Front Page Web Only

I have 2 webs under my default web running win2003

1. A front-page intranet
2. A asp (not .net) web is fine

Both allow anonomous access. My front page web always gets a BLANK Request.ServerVariables("Logon_User"). The asp web gets the logon_user OK. Both webs have a global.asa that has Code:

View Replies View Related







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