Invoking 404 Page Even When Page Exists
Is there a way I can make my server's 404 page display even when a correct page is requested?
Here's what I'm doing: on a certain page, the requestor's IP number is checked. If the number is an intranet number (192.168.x.x or 10.x.x.x), then the user is allowed to see the page. Otherwise, I want the 404 page to appear, as if the page doesn't even exist.
It's just one security measure I'm implementing.
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Creating A URL Still Exists Page/util
if there is a method out there that allows me to create a web page util to see if URL links are still valid. In other words I've created a system whereby a user can add their own links/urls page, but they want to periodically check whether all of these links by executing a multi-check. My theoretical thought on this would be that the script would check if it receives a 404 on each page request and mark a flag if and when it gets it, but as to how I would do this in ASP or JavaScript.
How To Transfer A Data Display On 1st Page To 2nd Page Upon Clicking On The Link
I like to know how to write this specifc function on ASP where the user eg: display a set of records on the webpage. Example the data are ID, Name and address. Lets say i display the data on the webpage and i set the Name as the <a href>. So when i click on the name, it will move to another page with the id of the specific name. Code:
On Session_OnStart() Getting Fired When Going From Page To Page At The Same Level As The Global.asa
This is a standard ASP application that has several pages at the root withthe global.asa. I set a session variable session("accountid") = "123456" within an asp page and then response.redirect to the next page and immediately response.write session("accountid") and I get back nothing. But if I set a session variable session("accountid") = "123456" within an asp page and response.redirect to a page in a sub directory and immediately response.write session("accountid") I get back 123456 on the screen.
Including Inverted Commas To Specify Page Elements While Page Is In ASP
I am having a problem with a site that I am developing - my aim is for it to validate as XHTML Strict however, I am running into a couple of problems validating it; in my Response.Write ASP script, I am not including " 's to define page element tags as they keep throwing up errors in the page. Code:
Blank Page Running ASP Page On Windows Vista
I've a strange problem with Windows Vista, running an ASP page on local machine (http://localhost/test.asp), the page does not give me any error but the asp code is not executed (simple code : <% response.write("hello") %), it show me a blank page, I think I've put all the setttings correctly, but maybe I must do something obvious to fix that.
Differentiate Page Requested Versus Page Refresh
I encounter a page reload situation in ASP. It is I need a way to differentiate whether the current page - "Application_Result.asp" got reloaded itself when user click on the browserRefresh button or is requested by the previous page "Application_Form.asp". I tried using <%if Request.ServerVariables("REQUEST_METHOD") = "POST" then%> <!--it is requested from "Application_Form.asp, do something--> <%else%> <!--Application_Result.asp refreshed itself(such as user clicks on the browser Refresh button, do something else--> <%end if%> However, in both cases, the IF statement above all evaluated as true. how to differentiate this two different behavior (Page Refresh versus Page requested by another Page) ?
Page Can't Directly To Login Page After Session Expired
I have page for user to update his/her details. What i want is after idle for more than 20 mins, the page will redirect to login page automatically. So that the user knows that his/her session already expired and need to login again. But it doesn't working. This is because if he/she update the details (after idle more than 20 mins), and click the Submit button, it will go to login page and all the data will be lost. Code:
Handling Script Timeout When Invoking ActiveX Object
I understand that with IIS5.1 on Windows XP Professional SP1, I can 1) Either set under IIS Manager-> Any specific Virtual Directory-> Configuration->Options->ASP Script timeout for all pages within that directory OR 2) Within a specific page, set the timeout as per http://www.microsoft.com/windows200...sp/vbob246s.htm e.g. <% Server.ScriptTimeout = 1 %> and that the value in 2 cannot be less than that of 1 What I am doing from an ASP page is as follows: Code:
Passing Parameters To Or Invoking A Method Of An Activex Control In Asp
I wrote a simple client/server chat program and the client runs as an activex control within an asp page. I have the users logging into the page using widows authentication and I'm using Request.ServerVariables("AUTH_USER") to get the users name. I'd like to pass this name to the activex chat client thru the page but I'm having some difficulty. I tried passing it as a parameter to the "Tag" property within the <OBJECT> element like this: <% username=Request.ServerVariables("AUTH_USER") username=right(username,len(username)-instr(1,username,"")) ' remove the domain or machine name from the username Response.Write "<PARAM NAME=" & chr(34) & "Tag" & chr(34) & " VALUE=" & chr(34) & username & chr(34) & ">" %> When I do this the ActiveX control doesn't appear on the page. Is there a better way to do this? I also tried creating a public sub in the activex control and calling it as a method from within the page but I can't seem to get the syntax right. I keep getting "Object Required" errors.
Can An ASP Page Read A Cookie Written By A PHP Page?
I am working with a developer, on two portions to a site, he is working in PHP and my work is done in ASP. Is it possible for my pages to request data from a cookie that was written by his pages that are PHP but residing on the same server? Just want to make sure before I spend too much time planning out the development on my end.
Passing Information Back To ASP Page From Another Page
I have an application which allow users to search our database. Quite a lot of search fields pull data from other tables. I don't want to populate the dropdowns (total 14 of them) from the database everytime as it slow the page load. Instead I would like to have a link next to the text field which a user and click and the choices can be displayed and whatever the user click in the pop up I want to transfer it to the text box and close the popup. For example there is a Textbox called country. The user can either type in the country name or click on the link which will pull all the countries from table in the database and which ever country user selects, the textbox is popluated with the country name and the pop up closes automatically. Code:
Attempting To Write Create An ASP Page FROM An ASP Page.
I'm trying to write an asp page line by line, as one would create a text file, only my file will end in .asp. One line simply writes a close ASP code tag, or FILECONTENTS=FILECONTENTS & "%>" When this line processed, an error occurs saying that the string was never terminated because the asp page attempting to write this line of code to a NEW asp page reads that close ASP tag (%>), as an actual close asp tag for itself, instead of a STRING value. How do I write this %> symbol to a new asp file, while still maintaining its purpose to close a group of asp code in the newly created page?
Refresh Parent Page From Child Page
This is my coding: window.opener.location.reload(); window.close(); I don't want the IE to pop up the alert msg to false retry or cancel to reload the page. I have tried: 1. window.opener.location = window.opener.location 2. window.opener.history.go(0) But as i carry some data from previous previous page, when i use (window.opener.location = window.opener.location), it can't capture my data as it just load the page. It will pop up error as no data captured : Microsoft VBScript runtime error '800a000d' Type mismatch: '[string: ""]' Any suggestion?
Page Header Or Footer Longer Than A Page
i am facing a problem with CrystalReports for visual basic.Net 2003. I have passed almost through all the problems but still i get a message when i view some reports "Page header or footer longer then a page". I am using ASP.net with VB and the developing muchien is running windows XP. the program works correctly to my computer but when i transfer it to the server machine i get the error . The server machine is running windows 2000 server. It has the service pack on it and framework 1.1 with all the updates. Does anyone have a clwe?
Navigate From A Regular Page To A Secured Page
What is the best way to lead customer from a regular page to a secured page? Regularly, we use absolute path. say first ,a customer is on this regular page for general information: http://xxxdomain.com/index.html, then customer decides to buy something from our site. Then our program will provide an absolute path like this: https://xxxdomain.com/buy.asp. Recently I am doing migration and feel that the absolute path is not convenient for program migration and domain merge. So I am wodering if there is any other way to do it? any suggestions and comments?
How To Chain Page To Page With RecordSet Data
I have a form.htm page where the user enters an ID to retrieve addresses. Then PAGE1.ASP displays the addresses. From here the user selects an address and submits. Then PAGE3.ASP brings back further information. My question is how do I use one field from the address information on PAGE2.ASP to display on PAGE3.ASP? I know how to do it with textboxs and such but cant get RS data to hope page to page. I get no errors or anthing. On PAGE2.ASP I have : <input type="hidden" name="CLIENTHIDDEN" value="<%=RS1("CICL_LNG_NM") %>"></td> On PAGE3.ASP I have: clientname = request.form("CLIENTHIDDEN") and to display: <td class=rt width="110" height="1">Business Name:</td><td width="849" class=rt height="1"><% =clientname%></td>
ASP Page As Inline Frame In HTML Page
I have a ASP Page[inline frame in an html page] that does login to a database. When the user visits the site, the first attempt to login will always failed and session is broken. Login name and password are correct though. Only when the user re-try agian he/sge is then able to login to the site successfully. Can anyone tell me what could had caused the first time login failure?
Page Size In Print Page
I write a page in HTML ,user can print it I want to fix page size in print page set up to (legal) that doesn't need user every time change option how I can do this.
Submitting Data From Page To Page
I am in the process of developing an application and would like to hide the query strings in the URLs. I want to POST data to a page then validate the data. If there is an error I have to send data back via a long query string. Is there anyway to POST data between pages programmatically?
On Page Load - Refresh Page
I have a page (with a form on it) and when the form is submitted, if there is an error the page is redirected to an error page (i.e. your attempt was unsuccessful..etc) Once the user is redirected to the error page, after a few seconds the page automatically takes him back to the previous page he/she was on. This is exactly what I want, HOWEVER, when the user is redirected back to the previous page, I would like for the page to be refreshed so the form can be cleared without the user having to click a reset button or anything like that. Does anyone have any clues to how may be able to go about achieving this?
Automatic Page By Page Web Refresh
I'm using Windows 2000 Pro SP4 and Office 2000 Pro Sp3. I have some dynamic database pages that I do not want a user to see from their local cache of pervious visits to this page. When these individual pages are called, I would always want them refreshed from the server. This is no matter what setting is used by the local browser. The closest KB article I found was Q200131, but that was not helpful to me. If a page by page determination of an automatic server refresh (rather than local cache refresh) is not possible, may I just set my entire web to be a forced server refresh for every page, thereby superceding the user's local browser settings.
Values From Asp Page To Html Page
I have a web form page that passes values to an asp page, in which an email is sent to the customer with those values. The email functionality works fine. But I also want to display these values on a separate "thank you" web page after that. What is the code to make those values display in the "thank you" web page? Does this involve adding code to the asp page and the "thank you" html page as well?
Passing Values From Page To Page
I have code that gets its values from a Request.Form it then inputs the data into the Database.The problem is when I do A Response.Redirect back to the original page I would like to pass a value back to a hidden field in the original page. Psudo Code index.asp ---> User enters data from drop downs ---> values get passed to insertintodb.asp ----> then ----> Repsonse.Redirect's back to index.asp where I would like to get the values from the insert statement back into this page as hidden field so It can be passed to another page based upon the users next actions.
How To Transmit A Fax Of An ASP Web Page, From That Page?
So I've got this web page written in ASP, which has some text and graphics, and I need to add a feature to the page whereby a user could select from among a list of fax numbers, and send a fax of the page to the chosen number (and what would then get faxed, would be the page as if it were printed out, i.e. including all the text and graphics.) I have seen pages from other sites that had buttons for sending a fax, so I am inclined to believe that something (at least vaguely) along these lines ought to be possible (however, every time I have seen such a page, it would also seem as though the code for transmitting the fax was in something other than straight HTML, because it was not evident when I viewed the source code of the page in my browser.) Code:
Servlet/JSP Page To ASP Page
I want to transfer a file from servlet page or JSP to an ASP page. Since the two pages are in different server (WAS and IIS), I cannot just send file path to the ASP page and let it retrieves the file itself. If i path file paths's to servlet/JSP it should send those files to ASP page on different server(IIS) for processing.I don't want to use file input type ="File" for selecting the file to upload,i want it to happen in background. I want the ASP page can get the file and then process it.how to do it?
Refreshing A Page Without Going To Top Of The Page
I currently have an automated-refresh classic asp page at interval 3 sec, but I found some problem when I have a long page down to look, the page keep going to the top after refreshing. I want the page to maintain its position after refreshing lets say Im at the bottom of the page, the page should be at the bottom as well after refreshing.
Display Page Url On Page
Is there a way of displaying the url of an asp page on the actual page. The page url will change as it is a detail page for hundreds of items?
Opening A Aspx Page Withing A Aspx Page
I have an asp.net page that I would like to open up another asp.net page within the first one. Like a parent - child relationship. I need to display a graph in the child on the parent.
How To Redirect From 3 Frame Page To Single Page Frame?
I built some Web site that includes 3 frames page. After a user sign-off I want to redirect him/her to a single frame page. When I use Response.Redirect command, I am getting the redirected page as a frame and I still see 2 other frames. How to get rid of other frames and display only a single frame?
Name Already Exists
I have a database that holds information in many tables. I have created an "Update" and an "Insert" form in dreamweaver MX 2004 which work fine but it allows me to add duplicate names in to the database. Does anyone know of any codeto stop this. If possible i would like it to bring up a pop up saying "Client Name Already Exists" etc
Exists> Then....
Can I do this is ASP I would like to check for the existence of a dBASE table but I am not sure about the syntax
Record Exists
I have an .asp page that correctly queries a table and returns data if a 'job number' and week ending date exist and the user can update the information that is there. What I need to do is, if a record does not exist the page needs to create one and then refresh/requery so the user can edit the data. Any suggestions on how to accomplish this?
Table Exists
How can I check if a table exists in an access database using (asp with javascript)
Check A Value Exists
Using ASP with VBScript is there a clever way to easily check if a value exists in an array without looping through it?
Check Exists
i have a textbox for user to put there loginid...and one button login valiablity...where user can click to check this userid is available...till here everything is ine...suppose between this another user registerd with same userid..and now first user will put this user id than it will get non avaliblity of this id.so in such case what should i do?
Record Exists
I've got a form that adds a record to a database. What I want to do is on submit, look at the records in the database to make sure no value in a particular column matches what the individual is trying to submit. More simply, Form A has a field called "collection" which inserts into the database column named "collection" I want to make sure that the value in the collection field hasn't been used.
If Already Exists, Problem
I have 2 tables: customers(id,FName,LName,MLMId) and Mlm(id, CustomerMlmID) I have done a insert form for customers but first i want to check the form to see if MLMId is already exists from the second table.
Check If Date Exists
We have two tables EmpProfile and holidaysrequest tables. EmpProfile has fields EmpNo Firstname Lastname etc HolidayRequests has fields EmpNo FromDate ToDate holiday requests table stores the dates employees have booked as holidays. I want to write a query which will be used by ASP page to display everyone who have not booked 29th - 31st Dec as days off.
How Do I Check To See If Oracle SID Exists?
I have built a page that lists all our databases, the users connected to each database, and what application they are using. Because these databases are moved, or removed from time to time I need to check if the database still exists before trying to query it. Otherwise I get funny SID errors when it tries to process this command:- Conn4.Open "Provider=OraOLEDB.Oracle;" & _ "Data Source=CD;" & _ "User Id=username;" & _ "Password=password" Can this be done in ASP or should I be querying the error collection or something?
FileSystemObject To See If An Image Exists.
Just wondering if someone could look at this and see where I may be going wrong. The basic concept is to use FileSystemObject to see if an image exists. If it does, display the image. If not, display image does not exists message. <% Set fs=Server.CreateObject("Scripting.FileSystemObject") strFilename = ="e:path oimageprodPixscienceTN" & (RecordSet1.Fields.Item("ID").Value) & ".jpg" If (fs.FileExists(strFilename))=true Then %> <%=(Recordset1.Fields.Item("ID").Value)%> <% Else Response.Write("No Image Available") End If set fs=nothing %>
How To Check Is A Value Exists In An Array?
I populate a recordset and dump it into an array. How can I check if a value exist in the array? I want to check if the c_Member_mgr has a particular value or not? Dim rs2 set rs2 = Server.CreateObject("ADODB.Recordset") rs2.open sub_Emp_Source, Conn Dim aSubordinates If not rs2.EOF then aSubordinates = rs2.GetRows() 'Close Recordset to use the new array with the 2 columns data rs2.Close() set rs2 = Nothing 'Declare Constants for the above SQL columns for better readability 'Use these Constants instead of referring to the array numeric indexes Const c_Member_Mgr = 0 Const c_Subordinate = 1 Const c_EmpID = 3 Const c_EmpName = 4
How To See If An Image File Exists
I'm building some dynamic image links based on if the image file exists. How can I check 'if files exists' using asp or javascript? I've messed around some with FileSystemObject but so far no success.
Redirect If UserName Exists
I have a table in SQL2000 called EmployeeID and a column called UserName I have a form which grabs the data inputted: Code:
Check If DataBase Exists
there is any way i can check if the database Exists. I mean from the code side. I dont want it to throw me any error thats the reason.
Checking A Table Exists
is it possible to check a table exists before opening the record set? We have a sql query that requests information from a table depending on what information the user enters. So if the user enters information that requests a table that does not exist then I get the following error -: Microsoft OLE DB Provider for ODBC Drivers (0x80040E37) [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'y2005m12' therefore is there a way to check the table exists before running the query or opening the recordset, and therefore redirecting the user to a different pages informing them of the problem?
|