ASP code inside a JavaScript function?
-
PLEASE help me fill in the question marks below. I need to look up a value from an Access database based on the value selected in a drop down box on a webpage. The onChange() triggers the function given below but as you can see the ???? indicate values I need help with. <script language ="JavaScript"> function budgetChange(dropdown) { var myindex = dropdown.selectedIndex var SelValue = dropdown.options[myindex].value <% Dim rsNew,connNew,SQLQueryNew,connStr, UL set connNew=server.createobject("ADODB.Conne… set rsNew = Server.CreateObject("ADODB.Recordset") connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Persis… Security Info=False;Data Source=" connStr = connStr + server.MapPath("orders.mdb") connNew.open connStr SQLQueryNew = "select UpperLimit from budgetLineMaster where BLAccount = ???? set rsNew=connNew.execute(SQLQueryNew) Do While Not rsNew.EOF UL = rsNew("UpperLimit") rsNew.MoveNext Loop %> document.form1.moneyLeft.value = ????
-
Answer:
This can't be done. ASP is processed on the server-side before the user ever gets a chance to change the dropdown menu. You'll have to make a form which submits the dropdown value to this or another ASP document to access the database.
sk_world... at Yahoo! Answers Visit the source
Related Q & A:
- How to call Javascript function in PHP?Best solution by Stack Overflow
- How to input variable inside regex javascript?Best solution by stackoverflow.com
- How to call functions inside a function in Python?Best solution by Stack Overflow
- Where Do I Place Google Analytics Code Inside a .ASPX Page?Best solution by Stack Overflow
- How do you put a picture inside a picture frame of a picture using photoshop?Best solution by youtube.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.