Ask a Question related to ASP Database, Design and Development.
-
Johnny #1
Function Calls not working
I am trying to create a simple 1 page asp page that should be very
easy, but I can't figure out what I am doing wrong. It lists a
person's gross income, and a list of deductions, number of dependents,
and a net income. As each field is entered, the net income field
should be refreshed. Problem is, there is one additional field that I
need to refresh along with net income. The value for this field needs
to be retrieved from an existing DLL which looks up the correct value
in an xml table.
I can create the object:
<%
SET objLook = Server.CreateObject("GL2k.Guideline")
%>
I can have other functions in a <Script></script> block,
SUB recalc()
...
END SUB
And have it recalc every time the field changeds,
<INPUT name="fld1" value="0.00" onchange=recalc()
But, I cannot figure out how to access the objLook object without
getting a 'jscript' or server error. It should be able to call the
recalc routine, then I want it to call a routine from the object,
objLook.Lookup(...variables...), but I can't make it work.
any ideas?
thanks in advance.
Johnny Guest
-
XML Calls not working when uploaded
For some reason when I test my file localy, my XML works no problem, but when I upload it, it seems to not function anymore. Anyone have any ideas? ... -
duplicateMovieClip function calls (Asynchronous)
My head is battered, I've tried loads of ways to do this function createPrinterOutput(){ var i=1; var sampleX =... -
Impersonation not working with Asynchronous calls
I make a connection from my web service function to a sql database (on another machine) using Windows Only authentication and the following in my... -
Function calls and strings
Hello. PHP possesses what the manual calls "complex syntax" for allowing one to include non-trivial expressions in strings, e.g.: $s = "The... -
[PHP-DEV] New extension; nested function calls failing
(Apologies if this is the wrong list or if the answer to this has escaped my searches, but I'm at my wit's end at the moment). I'm trying to get... -
Mark Schupp #2
Re: Function Calls not working
objLook exists on the server. you are trying to access it from the client.
--
Mark Schupp
Head of Development
Integrity eLearning
[url]www.ielearning.com[/url]
"Johnny" <julin@crosspaths.net> wrote in message
news:bdf80677.0403011300.616522c1@posting.google.c om...> I am trying to create a simple 1 page asp page that should be very
> easy, but I can't figure out what I am doing wrong. It lists a
> person's gross income, and a list of deductions, number of dependents,
> and a net income. As each field is entered, the net income field
> should be refreshed. Problem is, there is one additional field that I
> need to refresh along with net income. The value for this field needs
> to be retrieved from an existing DLL which looks up the correct value
> in an xml table.
>
> I can create the object:
> <%
> SET objLook = Server.CreateObject("GL2k.Guideline")
> %>
>
> I can have other functions in a <Script></script> block,
> SUB recalc()
> ...
> END SUB
>
> And have it recalc every time the field changeds,
> <INPUT name="fld1" value="0.00" onchange=recalc()
>
> But, I cannot figure out how to access the objLook object without
> getting a 'jscript' or server error. It should be able to call the
> recalc routine, then I want it to call a routine from the object,
> objLook.Lookup(...variables...), but I can't make it work.
>
> any ideas?
>
> thanks in advance.
Mark Schupp Guest
-
Bullschmidt #3
Re: Function Calls not working
Here is a similar concept with the page refresh including some new
information from a database:
ASP Design Tips - Dependent Listboxes
[url]http://www.bullschmidt.com/devtip-dependentlistboxes.asp[/url]
Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
[url]http://www.Bullschmidt.com[/url]
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest



Reply With Quote

