Can You Block A URL?
I need to block a URL from printing at the bottom of the page from a
website. Is there any code that can do that? I know I can make it
into a PDF on the fly and that will elminate alot of hassle, but is
there any easier way?
View Replies
ADVERTISEMENT
I am tryong to iterate within a folder collection and am having problems getting to the next iteration when my if statement proves true:
For Each folder in foldercollection
if instr(lcase(folder.name),"_vti") = 0 then
next
else if instr(lcase(folder.name),"_vti") = -1 then
util.AddScopeToQuery Q, sPath & "/" & folder.name , "SHALLOW"
AddSubsToQuery Q, sPath & "/" & folder.name
end if
next
I get an error stating unexpedted next, but am not sure how to jump to the next item.
View Replies
View Related
I have a block of ASP code (enclosed in <% .. %>).
How can I call that piece of code from another piece of similar code?
And can the code be in any order on the page for it to work?
View Replies
View Related
i want to disable the keybord because i am making a quiz test engin. when the user
gets to the test page he will be only using the mouse and will not need the keyboard
at all.
i have a code copied from somewhere and it uses vb code. i need to know if its
possible to do that in asp using vbscript or javascript?
View Replies
View Related
The first IF statement and redirect is what I need. It's the Else statement:
If Len(Request.Form(NAME_OF_CAPTCHA_TEXTBOX)) > 0 Then
If UCase(Request.Form(NAME_OF_CAPTCHA_TEXTBOX)) = UCase(Session("CAPTCHA")) Then
Response.Redirect("../Profile1.asp")
Else
Don't allow the form to upload to the db & m_sUserResult = "You typed " & Request.Form(NAME_OF_CAPTCHA_TEXTBOX) & " which was incorrect!"
End If
End If
I can not figure out how to block the MM_editAction (form upload) if the first "if" statement is false.
View Replies
View Related
I want to block certain email addresses like,(See the MailTo Section, I don't want the Sandra email address), through my online forms. I've been receiving spam from people using the forms. My code below is ASP. The code basically sends the form data to 3 email addresses and send the visitor who filled out the form an HTML style email message as confirmation. I added an IF THEN statement (Look at the MAIL TO) for the unwanted email address thinking it would do the trick but it doesn't block or send the email to the unwanted email address. Here's the beginning of my code. Any help would be greatly appreciated. NOTE: I replaced the wanted email addresses with phony names because they are private.
<%
If request.form("Email")="" then
response.write "<p><br><center><font face='arial' size=3>"
response.write "<b>Please don't forget to enter your"
response.write " Email address!</b></font>"
response.write "<form>"
response.write "<input type=""button"" value=""Return to Form"""
response.write " onclick=history.go(-1)></form>"
Else ........
View Replies
View Related
I am designing an app with multiple users. User 1 logs in and navigates to a Page 1 where a page template is modified. When modifications are over User 1 saves the page and logs out of the system.
I need to block access to every other user to Page 1 until User 1 "releases" the page.
At the moment I am using a field on my Access DB called locked that I set when any user enters Page 1, and upon saving locked field is cleared... Is there a more efficient way to do this?
View Replies
View Related
Can I do this if I know the person's IP address?
View Replies
View Related
I have a asp page and keep submit to itself and I use a hidden field to
track the step. But I found in each step, sometime the block is being
executed twiece. How to debug this and fix?
View Replies
View Related
if i run my project IE will open and output willl be shown. my need is u can able to see three butons(minimize,maximize,close) in yhe right corner of the IE window, me need is that should not be appear so only screen will be displayed.why i need this requirement is user cannot close teh window using any method, one method is this pressing this close button, i need to block this
my second need is if try to use alt+f4 to close the window i shouldn't close for ten minutes,after ten minutes he can use alt+ f4 to close so please give me coding for this also
third way is if he tries to use windows+d or windows+m or alt+tab it should not work,i need to block this way also
View Replies
View Related
is there any way to block access website to particular country internet users.
View Replies
View Related
i am looking for to block INTERNET EXPLORER to doing its activity.how can i stop IE not to use back button OR like this way if someone want to go back from the certain page. can we show the any other IE generated messages.like page cannot be displayed etc
my basic requirement is not let the user to see his last page which he had submitted
can it be done?
View Replies
View Related
i've developed a application in asp i want to restrict the user to login more than one at the same time i mean if user is already login then if he try to login on another window at the same time the message should b displayed u r already login.
View Replies
View Related
in the past days my site counter (ASP) shows me a suspecious count number, is there a way to block spiders & crwalers from my counter?
View Replies
View Related
I use the windows 2003 server with IIS 6 and my web pages are created with ASP script.I am trying to block some web pages (not all) that is created only for internal users like an intraweb.To do this, how can i control it and how should i block to prevent access from external users.
View Replies
View Related
I searched an issue on the net and in our forum but could not find any solution. My question is :
How to skip some block of code while programming in asp page so that I get the necessary part of page only???
View Replies
View Related
I use a free database-driven ASP guestbook. I want to add a IP address
blocking filter to it( just to block one particular guest). What is the
easiest way to do so?
View Replies
View Related
I was wondering if anyone could shed some light on how to blacklist certain email addresses or domains form posting in my form. I have client side validation to ensure fields are entered correctly and contain the correct values.
I need to adapt my script (below) to block email from "@mail". I am getting losts of spam from this email address filling in my form. Code:
View Replies
View Related
If I have a long text which I copied from a Word document and pasted it into
asp in order to output it into HTML, how do I detect new line in the text
and insert Line Feed Carriage Return?
View Replies
View Related
I have a wizard that teaches kids how to write legislative bills. It is a series of 5 screens that forwards each page's entries to the next before proceeding to the next screen. All five screens worth of data are then inserted into the db on the final submit.
I am getting rare reports that on the submit of the final edit screen the entire data entry disappears. I have not been able to duplicate the problem here and it only has happened to 2 of 300 entries that I am aware of so far. Could this be a firewall issue or a browser settings issue of some sort?
View Replies
View Related
I am looking to create a calendar. I am stuck on how duplicate records based in a date parameter. Example
A person is off between 12-01-04 to 12-09-04 . They submitted a form than contains the description. I want the record to duplicate 8 times because of the date paremeter.
View Replies
View Related
I am trying to create an ASP page that processes a large block of text that is posted to the page. The data block is approximately 500K. The only was I can figure to get the posted text into a string is using BinaryToString. Is there another way to just get the body of text that is posted?
View Replies
View Related
I want to prevent people with yahoo, hotmail, gmail accounts from registering to my site. Here is where I do Email Insert Confirm. How do I block these email Address:
Code: .....
View Replies
View Related
Is there any way to block the print, save and source functions on a image? I already used the anti-right click but people are still able to take the image because in the left hand corner of the pic the option menu pops up.
View Replies
View Related
I have a login page in ASP and I am trying to block a folder with pictures to make the unavailable to people who doesn't loged in to see them. How can I do to block this folder or put some kind script to allow only the pople who loged in to see them?
View Replies
View Related
I using ASP Windows 2003, i need in my web site, block files to download. if a user is logged, when download a file the direction of file save in URL, example:
http://mysite/files/test.xls
and any user get this file written this direction in URL, i like to block file or folder if the user is not logged.
The logging use session, and MySQL ...
View Replies
View Related
I'm turning my application into a "DLL". Everything worked fine untill I try to do a "While" in my asp code. Then I recieve an error like this:
"Object variable or With block variable not set"
My vb code look like this.....
View Replies
View Related
anyone knows of a way to block the HEAD method from being
used outside of the server? (i.e. by a program, or external website
View Replies
View Related