How can I check to see if a form element exists on a form that has been submited? I have a load of checkboxes called box1 box2 box3 etc. I want to create a loop which gets the value of the box (checked or not), but there is an unknown amount of boxes so I want a loop:
I'm having a problem with the fact that I want to allow image files to be uploaded to a remote web server, as the hosting package the web site is on is IIS6 and has a default file upload size limit of 200kb. As it's a shared hosting package, the default limit cannot be changed for me unfortunately.
Anyway - i need to check the size of the file being uploaded, so i can notify the user and prevent them getting the default Microsoft error message page. The problem is that I can't implement a server side size check which works, using either Request.TotalBytes or load.getFileSize (with "load" being an object of my loader class). It seems that I can't carry out any of these operations when the file size is too large.
What is the easiest way to check if a particular QueryString exists?I want to know if the QueryString was ever passed rather than whether it contains a value or not.
I have a simple form where a user enters their email address, which then passed them to a 2nd page where the email address entered is used to filter a recordset.
How can I set up an IF statement so it checkes every record in the recordset, and if the email address entered does not match any record redirect to another page?
I tried to post this last week, but never saw it, so I hope it's not a duplicate. (Sorry if it is.)
I am rewriting our member log-in page in classic ASP from PHP. We will be switching platforms next month. Every member has an access number to log in. Once they have logged in, if they accept it, a cookie is provided so they do not have to log in again. When the code is supplied via the cookie or form, it is validated against a database file to determine the level (customer, distributor, etc.) and the page is built accordingly. If the code has been inactivated or is no longer valid, appropriate messages are supplied. Pretty basic stuff.
The first thing I want to do is to check if the cooky exists on the client computer. PHP had code for this, but I'm not sure I'm doing it correctly in classic ASP. My opening code is below. This is before any HTML on the page, as I have to determine if cookeis need to be set or deleted before the page opens. When I run this on my IIS server here, the page displays an error 500, but no hints as to what line the error is in. Can anyone help. I suspect it is because at this state, the cookie does not exist, as it is my first log-in.
If Request.Cookies("kc").HasKeys Then bCooky = "S" 'Cookie exists, set flag for cooky set strCode = Request.Cookies("code") strSource = "cookie" ElseIf Not IsEmpty(Request.Form("code")) And Not IsEmpty(Request.Form("submit")) Then strCode = Request.Form("code") strSetCooky = Request.Form("cooky") strSource = "form" End If
is it possible to create a session cookie and then test for the existence of that session cookie on another page?
basically, what I'm trying to do is a sort of buddy list. When someone logs in (lets say Dave) a session cookie (dave) is created, then along comes bob, when bob logs in, he could see that Dave is logged on because a test for session.cookie in Dave's name is true.
Alternatively I guess I could set a flag in the DB when Dave logs on, but then I would have to go about removing this flag when dave logs off (which most people don't do, they just close the browser), which might be a pain.
I have an asp page written entirely in jscript with a vbscript used as an include file which one variable on the page must access.
When the page runs, I run into jscript complilation errors when it tries to access the include file (since it is written in vbscript), and I can't figure out how to get the two to work together. How do you get both scripting languages to work on the same page?
I'm using application variables for a web based sales tracking application. I use the variables for stuff like connection string, database name, etc. I store the values in a asp file that is included in a login page. The assignments are in a procedure that I then call on the login page. This is done everytime a user connects to the login page.
what's happening to the variables? Are they being overwritten everytime a user accesses the page? I'm not checking for the existence of the variables. I just call the routine everytime the page is accessed. I know the values are shared for all users but, I was wondering if I should check for the existence of variables? Will it free up resources? Should I be using locks?
I would like to check if a website is currently down, but don't know how to do this efficiently. I do not have access to the remote server. I have tried using XMLHTTP, and it worked, it just took a long time and I felt it wasn't effecient enough. Is there some other way to check if the website is up or not using ASP?
i m looking to set up a 2 pages, one that has a apply button and one that has a checkbox. I want it so if the user clicks on a apply button , it will automatically check a checkbox on the next page.
at the moment if the user clicks apply it just transfers them to page but doesnt check the box, i need it to check the box on the the screen that the user gets transferred to.
I'm writing, or trying to! an ASP page that checks if a file exists and if so transfers it. the use sends a query string with the name of the file, I have this bit working, but need to check if the path and or file exists in vb6 I would write:
if dir(strFileName & " est.zip")) <>"" then msgbox("OK 1 ") else msgbox("OK 2 ") end if In VBS for ASP? if dir(Server.MapPath(strFileName & " est.zip")) <>"" then response.write ("OK 1 ") else response.write ("OK 2 ") end if
Is there a way to make sure that a file is already in use using asp? For instance, if one person has opened a file and is about to write to it; then is there a way to keep another user from reading, or writing to that text file until the first user is finished?
I created this logon page that takes a user ID and password and logs in the user. The user Id is the email address of the person loging in.
I also have the reset password option on my page. Here is bug on my page, even if the user's email address doesnt exist in the database as they have not requested access but because they know that the userID is email address they think that because they have email address they should be able to login and when they cant login and get message access denied they try and reset their password which works.
I dont want the reset password option to work if the user has not been provided the access yet.
Here is my login code can anyone tell me how to put a flag to check and see if the user's email address exist. Code:
How to provide remember me check box on login page in asp coding. So that user can be remembered by his local m/c if he wants. Any code support / link in this regard.
iam working on a forum.many users access this forum and post good number of messages. but sometimes i get strange errors like "The system cannot find the file specified. " I suspect this is cuz load factor or may be bad sql statements.
how can i check the asp page activity like whether all the objects are closed are still running? amount of time a perticlar page is taking to execute? under what circunstances does the above error occur?
I am building and intranet and i need to check if a file exist in a folder on the network. The folders are in the R drive, the web server is on the same network as the other servers. I have tried this code below but I can only check the files on the website.
Set fs = CreateObject("Scripting.FileSystemObject") if fs.fileexists("filename")=true then Response.Write "Exist" else response.write "Doesnt Exist" end if
If fs.FileExists(Server.MapPath("filename.htm") Then set f=fs.OpenTextFile(Server.MapPath("filename.htm")) If f.ReadLine <> "" Then
First, I check to see if the file exists. If so, then I open the file for reading. Then, I read the first line to see if it equals "".
The problem here, though, is that if the file is empty, I'll get a "Input past end of file" error. So, how do I check to see if it's empty without reading the lines?
The Codes mentioned below test to see whether the File named Mobile.txt exists or not. Is there any code that tests to see whether any Files (not a particular file) is present in a folder or not?
<% Set MyFileObject = Server.CreateObject("Scripting.FileSystemObject") If MyFileObject.FileExists("C:Mobile.txt") Then Response.Write("I exist!") Else Response.Write("I do not exist!") End If %>
I want to check a checkbox automatically once a value in input box is changed, both the input box and check box belong to one row of a table.
I used the onChange event in the input tag and called the a Javascript(I am sure I am not doing it right here), but it doesnt change the checkbox status.
Can somebody please give me some examples on how the status of the checkbox can be changed.
I need to make a check for file type at client end, ie allow only files that are images to be uploaded and prevent the others. I tried using the HtmlInputFile.Accept Property, but it somehow doesn't seem to work.
moreover, it claims to support only few browsers. Also, javascript in itself, gets very dirty, if i start making validations for every thing. Does ASP.NET support any control which can cause these validations? what is the most elegant way to do this?
How can I check if a file exists on the client? I have a form which requires the user to upload a document from their computer. In the event they don't enter a valid path to the file the form does not submit. How can I check if the file exists and if it doesn't, provide a suitable response?
iwant an online domain name checking on my website, I tried few scripts but didnt work well. If some one can give me a script through which I can check online domain names .
ive got a bit of code to check if a file exists and it works if I use the full path ie "C:Inetpubwwwrootfile.txt" can someone advise me how to get it so I can use the relative path ie "file.txt" where the file and the code are in the same directory? Code: