i make a data display page, its showing all records, now i want user just press print button, and that print all data on screen, secondly user input 2 dats From ..... To......, so data in between that day will print,
I can run these commands successfully from the command-prompt on the server but from an ASP page, I get nothing not even an error. The Text output for NET PRINT is a blank text file.
I feel something is different on the permissions side because this code/approach use to work fine.
How to proceed?I have one form say form_a .from here through anchor another form form_b is being opened in another window using (window.open command). Now I have some value say val_b1 in form_b. Once again I am coming to form_a through following code Code:
I'm showing content from a database,but I only wanna show the titles until there's clicked on a button 'more'.My code looks like this now,and nothing happens when the button is clicked: <% Do While Not rstTest.EOF
I have XY coordinates stored as JS variables, is there a way to transfer these variables (XY coordinates dependent on position of cursor on screen these are captured on Click) to an ASP page or new ASP window.
I have regular <a href> in my .asp file that goes back to login page (link Log Off) But the session still stays, so I need to clear the session.in one of the CLASS files I have function logout that clears session.So I tried:Code:
I have a page that displays ticket numbers and the status they are in.I want to have a delete radio button next to the status button. and if I select the radio button and click delete it should delete the record from the SQL database and from the page. Does anyone know how to do that in asp.
In the following snippet of code, I can not get my openBrWindow command to work. Does anyone see anything that jumps out at them that is obviously wrong? Code:
my doubt is someones website is offering to send free sms.
i just want to add that in my website too.. i just added that form in my html page. but when i click send button it goes to the original website.
is there any way to come back to my site after cllicking send button. this is the real code.. can we change and give some onclik send and come back to mywebsite?
the javascript code for 'validate' is in place on same page and I even tried to launch a prompt saying "hello" at begininng of javascript function to see if it is even getting their.Is the syntax correct below?There is no submit button but an image to click.
this line below is the input for userphone which I set as a mandatory field so i would assume a message would pop up, but it seems like the onclick event is not getting fired.
I have 2 buttons on a form.If user clicks on ButtonA, the form gets submitted to PageA. If user clicks on ButtonB, the form gets submitted to PageB.One forum promotes using the OnClick event to direct to the correct page.Another forum says OnClick is not wise because a user could have scripts disabled.What is the best way?
What is the proper syntax for the below statement?I'm having problems with the OnClick portion.Response.write "<input type='submit' name='Submit2' value='I WANT TO MAIL A CHECK'onclick='document.frmReview.action='check.asp';doc ument.frmReview.submit()'> "
I have an ASP page that once a user puts a check in form field checkbox I would like to have the the record updated and the page refreshed? Any suggestions on how to handle this? This is currently what I have for my checkbox:
I have a session variable who change the selected language (French or English) and i try to change this variable when someone click on my anchor. Code:
In the code behind of my ASP.net web page I have code written that is dynamically creating a button. Here is a sample of how I define it.
//Define Variable Button btnNext;
public void someMethod() { btnNext = new Button(); button += new EventHandler(this.btnNext_Click); //then i add the control to the page, then call its click event btnNext_Click(); }
When I clickthis button on the page, the page postsback and its onclick event is never called (stepping through the code shows that it never gets reached). If I click the button a second time, the method is called and it works fine.
i have three images on my page which i want to be able to increase the text size of the whole page by using these buttons
Small Normal Large
Standard size will be normal, the others i want to affect the whole site so when they change page the setting changes stay with them
The only way i can think of is multiple style sheets and saving to a cookie anyone got some examples or suggestions / solutions for how to approach this ?
The user basically queries the database for some data, and I initially retrieve just part of the data matching the query...
I display the Primary Key as a hyperlink..and when the user clicks on a particular retrieved data..i want to display all the contents about that element alone on another new page...
The problem i am facing is that i do not know the syntax to use the onClick event within an ASP code:
<INPUT TYPE=button Name=temp Value="submit" onClick="vbscript:More();"> <script language = 'vbscript'> <%Function More response.write "Inside the fucntion" End Function%> </script>
I have files that are created with a dynamic name that I want to have hyperlinks created. Things work when I have a static name, but give me the 404 when I throw in the dynamic stuff. Code:
I am just trying to do simple client side thing but There is a list of filenames with hyperlink which are generated dynamically on my ASP page.
Now I want to get the path on the hyperlink that shows on the status bar when you actually mouseover the hyperlink using VBSCRIPT. Which I would then pass to a VBSCRIPT function and do the further processing.
I used document.location.href but that gives the pages path.
my objective is to click on an image and use the file path of the image as the variable in the next query, hence re running the same query but with "WHERE imageb " and not "WHERE imagea " with the value of imageb replacing min_vsim on the next query. this query can be excecuted preferebaly by a mouse click on the url of the image. Code:
When the user clicks a button, I want to increment a server side variable by 1. When the user clicks a different button, I want to decrement a server side variable by 1 only if the variable is not less than or equal to 1. Does any one know how to do this?
Basically I need to show an image in a web browser (easy enough) I need to be able to track Mouse X & Y positions..Also OK, I have found some javascript to acheive this, but here is where the problem lies, the user must somehow click on this image & I then need to automatically record, display (graphically would be preffered) & send this info to a database !! Can NE1 out there do this How & where would I start?
<A HREF="http://SomeWebSite" OnClick="return confirm('Are you sure?')">Click me</A>
or
<A HREF="http://SomeWebSite" OnClick="return confirm('Are you sure?');return false;">Click me</A>
Everything fine in XP and 2000, but in all WindowsMe Stations, it redirects the link even the users click no, I check all the computers, they have installed IE6 Sp1 and js enabled. What wrong ?
I have ASP statements stored in SQL and want to run them on an ASP page. I am printing the data onto the page using ASP, but the ASP code that comes from SQL just appears as actual text. For example, it appears as:
I am developing an Intranet application for a business. I would like to be able to print out certain bits of information just as regular applications do. I realize that this is a little more difficult, and after doing research it seems that the best way to print is to use JavaScript's "window.print();" command.
The only problem I have with this is that
#1 - it prints the address and date at the bottom of the page #2 - it prints the page numbers at the top of the page.
Is there any way around this (without having to alter IE's configuration)? Or perhaps do I need to approach printing in another way? Perhaps VBScript?