How do I go about calling a server-side vbscript within a client-side javascript function? What I have is a page heavy on the javascript that has a number of functions, one of which is to begin a visual countdown with an onclick and also open an asp page containing the server-side vbscript, which initiates a wake-on-lan call. I had no idea how to call the vbscript within the javascript function, so this is why I opted for the vbscript asp page "pop-up" via window.open. Code:
Is it possible to run a Server Side function from JavaScript? I have a dropdown list that executes some javascript in the onChange event, but I need it to query a database after it does so.
Is there a way (and can you give me a very brief example or point me to one) to go through all the form objects sent by a PUT to determine what the form object names were and the values sent?
I need to do this with VBScript on a "classic" ASP application.
Request.Form doesn't seem to do it. While I can tell how many objects were sent (Request.Form.Count) and what the value of each object is (Request.Form(I).Item or simply Request.Form(I)) to some degree, I can't seem to nail down the object name.
Also, I noticed that a <button> field with an embedded <img> returns the image when queried by Request.Form(I).Item.
1. I have a form, with a textbox and a button. I have to enter a value in the text box and then i have to click the button, which opens a popup window. Here i want to pass the value of the text box which is entered in the parent window to popup window.
I have to use that value in the popup window's form_load event in the Code behind, and i have to take the values from the database using the value which i have entered in the parent window. Code:
is it possible to open an excel file (used as a template) from server using server-side vbscript; then modify it or add values from client using client-side vbscript?
Following is a vbscript code extract triggered by a combobox OnChange event. arrVendorA and arrdefpack are server side arrays and i need the intCounter parameter to be the array index. Code:
<script> sub getstdPackByVendor(strPartNo, intCounter) dim selVendor selvendor= colSelect("cboVendor", intCounter).value
if selvendor= "<%=arrvendorA(intCounter)%>" then if "<%=arrdefpack(intCounter)%>" = 2 then colTD("txtStdPack" & intcounter+1 ).innertext = cstr("<%=arrVAStdPAckL2(intCounter)%>") end if end if end sub </script>
The following code is giving me a type mismatch error at the 'if' statements... any ideas, anyone ?
sub getstdPackByVendor(strPartNo, intCounter) dim selVendor selvendor= colSelect("cboVendor", intCounter).value
if selvendor= "<%=arrvendorA(" & intCounter & ")%>" then if "<%=arrdefpack(" & intCounter & ")%>" = 2 then colTD("txtStdPack" & intcounter+1 ).innertext = cstr("<%=arrVAStdPAckL2(" & intCounter & ")%>") end if end if end sub
I check to see if a certain submission button is asking for removal. If the removal is true, I update a recordset's delete column. This has been tested and it works. However, now I'd like to prompt the user to make sure that he/she wants to remove the record. Here's the code: ....
I have a Client Side Java Script which is supposed to re-load the options on my serverside ASP form.
I have been trying to get the syntax right to assign the Select box on the ASP form to a variable in my JavaScript so I can update the options. Can anyone either tell me if this is not possible or what the syntax should be. Here is some information.
Form Name = AddProdForm Select Box name = subprodline JavaScript Variable = form1
Here is one of the many versions of this line I have tried.
I m writing one code to invoke remote desktop service for given IP address. For that i m using mstsc.exe file to invoke RDP.
I have a no of links to be displayed on the page and on click of link, RDP for that IP should be called. Currently i m using one button to invoke RDP. Code:
i need to modify one website. in this website we use activex control to get data from local computer. after selecting that data on the basis of selection i need to run query and get value. i need to use this value in javascript which is called when i click button.
i faced problem because i am not getting this value in javascript. which i need to get it from database on the base of userselection. we use simple button in stead of submit. so is there any way i can get this value in javascript. when i click the button.
I am starting to build quite a few pages that will have tables of data from an SQL database.
I have been building the table rows on the server side in VBScript, but I have been thinking about having the VBScript code just build array variables in the <head> section (or as local variables), and then have JavaScript functions on the client side actually populate the tables when the page loads.
I do plan to do other things like being able to sort the tables in JavaScript code on the client, limit the tables height and be able to scroll the rows, and click on a row in the table, and have the values populate a form. I will also need to be able to export/download/? some tables into Excel.
I am doing login page . (login.asp)As usual it has username , password textbox and a login button .i need to do client side validation for mandatory fields and I need to do server side validations to check for the hardcoded username and password .if it matches i have to redirect to another page(content.asp)
im trying to use the following code to log whenever a user clicks through this particlular message box - however, this currently logs regardless of whether or not the message box was clicked - im assuming this is because the server-side code can't see the client side if condition. but how can i set the varMsgBox variable as a server-side variable? Code:
Im using a table which can add rows dynamically.This is pure javascript. However, first cell of each row, is a 'select' drop down menu, which has to be populated with entries from the database.
So i have to use ASP to connect to the db, retrive the file with the values and pass on these numbers to the 'value' part of the 'select' element of each row. How can I do this?
I thought it would be easy but I have spent (wasted) lots of hours on it I have this SQL statement that returns customer names. Customer names can be as simple as John Doe or a bit more complicated such as Sean "Big Al" Apple Using ADO object, it gets stored into a variable in VBscript on server side, so the line of code will be like Code:
msCustomerName = rsCustomer("customer_name")
At this point, I have no idea, of course, what letters the variable may contain.
It is generally recommended to put all client javascript in between the <head> tags. What are the drawback if the scripts are not placed there? It seems that Internet Explorer can handle them where ever they are on apage.
Guys Just in case anybody know how to pass a javascript object in ASPCASE:
I have an input button with a Click event
<input type="button" onClick="JScript: done(this,<%param1%>,<%param2%>)" Now param 1 and param 2 are ASP variables whic I sucessfully requested in another asp page.. like this... <input type ="hidden" value="<%=param1%>"> <input type ="hidden" value="<%=param2%>">
Now the problem is I want the object "this" to be passed to another page.
While coding asp applications in vbscript objects are set to nothing when they are no longer required. What about when coding with javascript. Is it necessary to set javascript objects to null or the garbage collector works differently for javascript ?
I got two ASP pages. One is ASP email form (I'm using Persist ASP Email component). Another one has all file links in it. For example, when user click Outlook course hyperlink. It will pop up another window with outlook course PDF file. (All PDF files are already in the server).
What I am trying to do is: When user click the "Add Email" hyperlink, it will add that course name and filepath into ASP/VBScript Dictioanry Object. After the user finish and click "Attach to email" button. All the files will be attached in the email as an attachment.
Because I am not familar with VBScript. So, can Javascript add items to ASP Dictionary Object?
I wrote 2 ASP pages that communicate with JavaScript objects. page1.asp and page2.asp are put in separate servers in separated machines. If I put in single machine, it is fine. Now it has Runtime error: 'params.test' is null or not an object. Any ideas?? Code:
I have an ASP page that uses VB as the language. It accesses my database via RedBack objects and methods. Here's the snafu I've encountered today -
I have a form defined (in HTML). I populate all of the fields within the form with values from the database (the records will always have data when this form displays). I use a for next to loop through the records (with multivalued fields). Here is a piece of the code:
Is there an easier way to handle that? I used Javascript to handle this when our two domains are hosted on two different servers(on different networks) and our search engine marketing people don't like the javascript links since they think the links are not favorable to a search robot.
Now our company is thinking about hosting these two domians on the same server, So I am wodering if there is any easy way to do that....
Using classic ASP is it possible to get the user's name and password and pass them to the web server to avoid the Windows Authentication popup login box?
On this page I've a button and an iframe. When I press that button, on click event has: document.getElementById("iframeID").src="mypage.asp?test=xpt" .
On mypage.asp I've
test=request.queryString("test"); response.write test response.end()
I'm developing an ASP app and trying to make it XHTML strict. This requires the removal of all "name" attributes from form elements. Can form elements be read server-side in ASP with only an "id" attribute?
im completely new to server-side scripting, but im an experienced actionscripter in flash, but i want to learn server-side scripting as well, but i dont know where to begin, any advice on where to start?