Disable Download Pop -up Box Button
I have a ASP Page that allow the users to Download a File @ the Click of the button the File Download Dialog Box will pop up on the Screan ,on the download dialog Box are 4 buttons namely Open ,Save,Cancel and More Info ,How do I disable any Button on the Dialog box let say the Save button?
View Replies
ADVERTISEMENT
disable button if no conditions are met. how to do it in asp?
View Replies
View Related
I have a page that updates/deletes user records. I made the mistake of thinking that because admin's use it, that I didn't have to make it stupid proof.How do i enable/disable submit buttons based on a radio button selection? or what would be the best way of prompting a "are you really sure you want to delete this record?"I'm not finding much info with being able to do this in vbscript.
View Replies
View Related
Is there a way where I can prevent people from downloading a file using a direct link (or bookmarked) (i.e. http://www.myfile.com/file.csv)? I want my user to log in with their email address so I can keep track of who downloads my files and when.
I already wrote a filedownload.asp file already which tracks and logs users who downloads the file. But I made a mistake in giving out the direct links to people already. So now people are using that direct link which bypasses filedownload.asp file. If there are any techniques on doing this.
View Replies
View Related
here is the script
<input <%If (CStr((Recordset1.Fields.Item("co1").Value)) = CStr("Mercedes")) Then Response.Write("checked=""checked""") : Response.Write("")%> name="radio1" type="radio" id="bbd" value="Mercedes">
I need the radio button disabled if the value in the string matches "Mercedes" and not checked. How do I change it?
View Replies
View Related
This isnt really a problem more like extra secutiry.
I am creating a wesite for a user who isnt completely computer literate and i want to either disable him from having access to the IE Back button as if he goes back on one of the pages and then re-clicks on the button on that page it will re-submit data that he shouldnt be!
View Replies
View Related
I'm having a problem disabling a back button. Normally what I would do is just throw a history.forward() javascript on the preceding page and be done with it. My problem is that the preceding page can either lead to an error or a confirmation page. If the user produces an error and are taken to the error page, they'll need to be able to click back to correct their mistake. If everything is correct and are taken to the confirmation page, then they shouldn't be allowed to get back.
Has anyone come across this? I've tried setting a session variable when everything is correct but clicking on Back makes the value of the session variable what it was when you originally got to the page.
View Replies
View Related
My asp application has 2 lisboxes. The 1st lists lists school department and 2 buttons (teschers button and students button to select either teachers or students from selected school depatment, which populates the 2nd listbox.
The slectall button under 2nd lisbox is used to select all items listed. how do I disable selectall button if teachers buttons is clicked, and enabled if students button is clicked.
View Replies
View Related
i have a text area on a form that users fill in. is it possible to prevent the user from submitting the form when there is no data entered in the text area. as soon as the user enters data in the text area then the form should be able to submit.
View Replies
View Related
Anyone knows the method/codes to disable the clicked button after first click by using .aspx-- to prevent people to click many time when waiting for the server response.
I tried to do this by adding a java script for the button. But, useless..
View Replies
View Related
Using IIS and IE how can I prevent someone from downloading an exe? I want it to be opened and executed without giving the user the option to Save it.
View Replies
View Related
Is it possible disable the Print Screen Button when you access to a WEB
application and enable it when you leave it? How could I do it?
View Replies
View Related
please any body give me the code for disable the close button using asp
View Replies
View Related
How can I disable back button of a browser in other words not allow the user to go back to the page from where they have come to this page when they click back button.
View Replies
View Related
I know you can not disable the browser back button but I have a script that grades online tests and when they click the, Grade test button, it works great. But if you click the back button, you can go back to the page and change the answers to the questions. So like this, if one failed the test they could simply click the back browser button and redo the test.
What I need is away to not disable the back button but maybe if they click the back button to take them back to the registration page to register for the test again. I have tried a few lines of code with "no-cache" and it would show expired but I prefer a redirection to the registration page if posible. how this could be done when clicking on the browser back button?
View Replies
View Related
I was wondering, is it possible to disable the back button in internet explorer.
Our Website is hosting a Siebel website, and the problem is that Siebel has problems with the use of the back button in internet explorer. I can't make a customized internet explorer because the site must be accesible anywere.
View Replies
View Related
i developing one online test engine module. i need to know how to disable the refresh button in internet explorer using vb or java script.
View Replies
View Related
i want to give a download button on my page which ,on clicking,should open a Save As dialog box to save the image (gif file)on the users machine.My problem is that i dont know how to go about it.
Do I have to write an a vbscript or javascript for the same or it could be achieved through a simpler mean?It would really be helpful if anybuddy post a reply as soon as possible.
View Replies
View Related
I'm trying to disable the back button on an asp page I've tried the code below but it does not work. Code:
Response.Cache-Control = "no-store"
View Replies
View Related
I want to understand the difference between submit button and regular button: <input type="submit"> and <input type="button">. My understanding is that submit button will send the entire HTML form to the web server, but regular button won't.
I have a problem that needs to pass HTML elements data back and forth in several ASP pages. I am using regular button to do that. But what's the approaches?
View Replies
View Related
if i want to display many records from database with each record has one checkbox.. if the record do not meet the constraints.. e.g. if supplier name has no email address.. then that checkbox will be disabled....the rest will appear.. i tried the disabled/// but no result.
View Replies
View Related
how extract previews option value disable from script.
View Replies
View Related
How can I check if the file is an JPG within my form??
If the file is JPG then the submit button should be enable, if not the
submit button should be disable
View Replies
View Related
I would like to open up explorer without any of the top menu.
View Replies
View Related
Can anyone please help me how to disable a link when i submit a form. I am using <a> tag for the link. I dont know how to do it.
View Replies
View Related
I am just learning asp and I have a question. Is it possible to disable a control that is on one page from another?
For example, I have a control on "Control.asp" and I want to disable it from "Sample.asp"? Is that posible? If it is, how is it done?
View Replies
View Related
I'm using an input box in a form
(<INPUT TYPE="SUBMIT" NAME="btnLocation" CLASS="btnLocation" value="<%=btnString%>">).
Is there a way to put this button in a disabled state, where it can't be clicked? I've tried adding an "enabled" property, but that doesn't work. I've even tried "visibility" property, but the input box doesn't seem to support that either.
View Replies
View Related
I am trying to disable submit button after user submits the form.
View Replies
View Related
I am trying to print HTML page from Internet explorer. In default IE prints header and footer when you print HTML page, I just want to disable those header and footer while printing my page...not permanently.
View Replies
View Related
For a web page, how to disable the "Save As" function? thanks
View Replies
View Related
I have two option button and on combobox,in that combobox i added "all" statically. My need is if i select that first RADIO BUTTON that "all" in the combobox has to be enable and if i select that second RADIOBUTTON the "all" in the my combobox has to be disable.this is my need.
My first radiobutton name is all and second is select. tell me the coding and where i have to write that coding. please answer me becos i am new to this environment.
View Replies
View Related
I want to disable text box property so user can't modify that perticular text box value in HTML form.I do not want to use label.how to disable text box property in HTML form.
View Replies
View Related
I need a script that will disable save, save as copy and select all Windows file and edit menu options.
View Replies
View Related