473,508 Members | 2,744 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Running server side code without submitting current page?

I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.

Thx!!!

Nov 16 '06 #1
14 1678

javelin wrote:
I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.

Thx!!!
If all you want is to ping the server without doing anything with the
results, see this faq:

http://www.jibbering.com/faq/#FAQ4_34

Otherwise, that's what Ajax is for. By the way, in case you think you
need to "install" Ajax or something, it's not like Flash - any modern
browser (IE5+, Firefox, Safari etc.) supports the technology Ajax is
based on built-in. It won't kill you to learn how it works.

Nov 16 '06 #2
ASM
javelin a écrit :
I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.
I've a lot :-)

You can play with a backward popup ( <body onload="opener.focus()">)
You can also play with an invisible iframe.

But more elegant is to use XMLHttpRequest (part of Ajax)

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Nov 17 '06 #3
ASM said the following on 11/16/2006 8:36 PM:
javelin a écrit :
>I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.

I've a lot :-)

You can play with a backward popup ( <body onload="opener.focus()">)
You can also play with an invisible iframe.

But more elegant is to use XMLHttpRequest (part of Ajax)
No, the most elegant would be the one the FAQ refers to whereby you
change the .src of an image and the server side script gets fired. Why
make it harder than it has to be?

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 17 '06 #4
Not sure I follow you. I don't know how to fire off the server side
script. Can you point me to the FAQ or other refs?
Randy Webb wrote:
ASM said the following on 11/16/2006 8:36 PM:
javelin a écrit :
I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.
I've a lot :-)

You can play with a backward popup ( <body onload="opener.focus()">)
You can also play with an invisible iframe.

But more elegant is to use XMLHttpRequest (part of Ajax)

No, the most elegant would be the one the FAQ refers to whereby you
change the .src of an image and the server side script gets fired. Why
make it harder than it has to be?

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 21 '06 #5
javelin wrote:
Randy Webb wrote:
>ASM said the following on 11/16/2006 8:36 PM:
>>But more elegant is to use XMLHttpRequest (part of Ajax)
No, the most elegant would be the one the FAQ refers to whereby you
change the .src of an image and the server side script gets fired. Why
make it harder than it has to be?

Not sure I follow you. I don't know how to fire off the server side
script. Can you point me to the FAQ or other refs?

We like to bottom-post in this group, to maintain the conversation
ordering. I've fixed yours for you (see how I moved your text below
Randy's?)

What Randy means with the image source is that you can use some code
like this:

------------
var myScriptCall = new Image();
myScriptCall.src = "/path/to/my/script";
------------

Or, in DOM terms:

------------
var myScriptCall = document.createElement("img");
myScriptCall.src = "/path/to/my/script";

//make it invisible but still load
myScriptCall.style.width = "0px";
document.body.appendChild(myScriptCall);
-----------

And your script will be requested (and therefore executed).

However, since one of your requirements seems to be to "return the
results", you are much better off with XMLHttpRequest - also known
(often erroneously) as AJAX. It lets you create a javascript object
which will go off and do a background request to your web server and
return the result. Which is exactly what you want.

Do some googling on XMLHttpRequest and see if you can get yourself
started. It's not as hard as it looks. If you have trouble, come back
and ask.

Jeremy

Nov 21 '06 #6
ASM
Jeremy a écrit :
>
What Randy means with the image source is that you can use some code
like this:

------------
var myScriptCall = new Image();
myScriptCall.src = "/path/to/my/script";
------------

I've tried that

myScriptCall.src = 'script.js'

file script.js :

alert('seen');
Nothing happens ... no message box :-(

(no error in FF console)

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Nov 21 '06 #7
ASM said the following on 11/21/2006 5:37 AM:
Jeremy a écrit :
>>
What Randy means with the image source is that you can use some code
like this:

------------
var myScriptCall = new Image();
myScriptCall.src = "/path/to/my/script";
------------


I've tried that

myScriptCall.src = 'script.js'

file script.js :

alert('seen');
Nothing happens ... no message box :-(
The .src of an Image won't execute script. If you want to load script.js
and have it executed, see this thread (or any other you can find
searching for my name and "loadJSFile" in it).

<URL:
http://groups-beta.google.com/group/comp.lang.javascript/browse_thread/thread/145dcdbddbb78612/5fb5e75ca498ae6b?lnk=gst&q=Randy+Webb+LoadJSFile&r num=4#5fb5e75ca498ae6b>

<URL:
http://groups-beta.google.com/group/comp.lang.javascript/browse_thread/thread/b1cee183e87aadc2/0b637acb0115f1f8?lnk=gst&q=Randy+Webb+LoadJSFile&r num=2#0b637acb0115f1f8>

The second one has a link to this page:
<URL: http://members.aol.com/_ht_a/hikksnotathome/loadJSFile/index.html>

Can you test that page for me if you have any browsers that aren't
listed on that page? If you have a different OS but the same version
browser I would appreciate that also as there may be an OS difference in
the page.

You should get an alert when the page loads, and then clicking on the
three buttons at the top you may or may not get an alert (depending on
whether that method worked or not). OS ver, browser name and version.

Anybody else reading this that can check that page and test it in any
browser/OS not listed and let me know it would be appreciated as well.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 21 '06 #8
ASM
Randy Webb a écrit :
ASM said the following on 11/21/2006 5:37 AM:
>>------------
var myScriptCall = new Image();
myScriptCall.src = 'script.js'

file script.js :
alert('seen');

Nothing happens ... no message box :-(

The .src of an Image won't execute script. If you want to load script.js
and have it executed, see this thread (or any other you can find
searching for my name and "loadJSFile" in it).

<URL:
http://groups-beta.google.com/group/comp.lang.javascript/browse_thread/thread/145dcdbddbb78612/5fb5e75ca498ae6b?lnk=gst&q=Randy+Webb+LoadJSFile&r num=4#5fb5e75ca498ae6b>
That doesn't answer to my question (I know this way to do)
I'ld like to do it in JS 1.1 (JS without DOM)
The second one has a link to this page:
<URL: http://members.aol.com/_ht_a/hikksnotathome/loadJSFile/index.html>
I've saw several times this page.
And ... ?
What have I to do with it ?
Only right button works : fireFox 2, Safari 1.3.2.
No button works : iCab beta 3.0.0
All work : Opera 9.0
All browsers except NC4.5 show the first alert.
Mac OS 10.3.9

NC4.5 doesn't like id="myScriptTag"
--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Nov 21 '06 #9
In comp.lang.javascript message
<11*********************@h48g2000cwc.googlegroups. com>, Mon, 20 Nov 2006
19:06:37, javelin <go*************@spamgourmet.comwrote:
>Not sure I follow you. I don't know how to fire off the server side
script. Can you point me to the FAQ or other refs?
>...
>--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/

You seem to be rather obtuse today.
You should read what you quote; if it's worth showing again to others,
it's worth showing to yourself first.

When you have read the FAQ thoroughly, you will know more about what you
need to do when presenting responses.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6
<URL:http://www.jibbering.com/faq/ Old RC FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Nov 21 '06 #10
I apologize for my apparent ignorance, Dr J. I was assuming the FAQ
mentioned was a reference to a posting here on this , as I've seen FAQ
postings in other newsgroups.

Dr J R Stockton wrote:
In comp.lang.javascript message
<11*********************@h48g2000cwc.googlegroups. com>, Mon, 20 Nov 2006
19:06:37, javelin <go*************@spamgourmet.comwrote:
Not sure I follow you. I don't know how to fire off the server side
script. Can you point me to the FAQ or other refs?
...
--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/


You seem to be rather obtuse today.
You should read what you quote; if it's worth showing again to others,
it's worth showing to yourself first.

When you have read the FAQ thoroughly, you will know more about what you
need to do when presenting responses.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6
<URL:http://www.jibbering.com/faq/ Old RC FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Nov 22 '06 #11
Thanks David. I have some rudimentary knowledge of AJAX, and have used
XML to display data in web pages. I don't think it will kill me, I was
just not sure if it was the best tool for checking database on the fly.
I actually have to call a component, so I'll have to see if AJAX will
do the trick.

Thanks again.

David Golightly wrote:
javelin wrote:
I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.

Thx!!!

If all you want is to ping the server without doing anything with the
results, see this faq:

http://www.jibbering.com/faq/#FAQ4_34

Otherwise, that's what Ajax is for. By the way, in case you think you
need to "install" Ajax or something, it's not like Flash - any modern
browser (IE5+, Firefox, Safari etc.) supports the technology Ajax is
based on built-in. It won't kill you to learn how it works.
Nov 22 '06 #12

Jeremy wrote:
javelin wrote:
Randy Webb wrote:
ASM said the following on 11/16/2006 8:36 PM:
But more elegant is to use XMLHttpRequest (part of Ajax)

No, the most elegant would be the one the FAQ refers to whereby you
change the .src of an image and the server side script gets fired. Why
make it harder than it has to be?
Not sure I follow you. I don't know how to fire off the server side
script. Can you point me to the FAQ or other refs?

We like to bottom-post in this group, to maintain the conversation
ordering. I've fixed yours for you (see how I moved your text below
Randy's?)

What Randy means with the image source is that you can use some code
like this:

------------
var myScriptCall = new Image();
myScriptCall.src = "/path/to/my/script";
------------

Or, in DOM terms:

------------
var myScriptCall = document.createElement("img");
myScriptCall.src = "/path/to/my/script";

//make it invisible but still load
myScriptCall.style.width = "0px";
document.body.appendChild(myScriptCall);
-----------

And your script will be requested (and therefore executed).

However, since one of your requirements seems to be to "return the
results", you are much better off with XMLHttpRequest - also known
(often erroneously) as AJAX. It lets you create a javascript object
which will go off and do a background request to your web server and
return the result. Which is exactly what you want.

Do some googling on XMLHttpRequest and see if you can get yourself
started. It's not as hard as it looks. If you have trouble, come back
and ask.

Jeremy
Jeremy, I just got to your post after replying to a few others, so I'm
sorry I top posted my replies on those as well. Thanks for the notice.

Also, thanks for the reference to XMLHttpRequest. I'll be sure to
research and test it. I am hoping I can figure out how to call
components with it as well.

Thanks once again.

Javelin

Nov 22 '06 #13
In comp.lang.javascript message
<11**********************@b28g2000cwb.googlegroups .com>, Wed, 22 Nov
2006 05:36:23, javelin <go*************@spamgourmet.comwrote:
>I apologize for my apparent ignorance, Dr J. I was assuming the FAQ
mentioned was a reference to a posting here on this , as I've seen FAQ
postings in other newsgroups.
Don't apologise for your manifest ignorance and/or stupidity. Instead,
terminate its manifestation By reading and understanding firstly what
you quote and secondly the FAQ itself. Then consider posting further
articles.
>Dr J R Stockton wrote:
>You seem to be rather obtuse today.
You should read what you quote; if it's worth showing again to others,
it's worth showing to yourself first.

When you have read the FAQ thoroughly, you will know more about what you
need to do when presenting responses.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6
<URL:http://www.jibbering.com/faq/ Old RC FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.


--
(c) John Stockton, Surrey, UK. REPLYyyww merlyn demon co uk Turnpike 6.05.
Web <URL:http://www.uwasa.fi/~ts/http/tsfaq.html-Timo Salmi: Usenet Q&A.
Web <URL:http://www.merlyn.demon.co.uk/news-use.htm: about usage of News.
No Encoding. Quotes precede replies. Snip well. Write clearly. Mail no News.
Nov 22 '06 #14
javelin a écrit :
I need to fire off some server side code, but I don't want to submit
the page I'm on. I know that's not technically possible (without
something like AJAX, maybe?). What I thought might work is to pop-up
another window (invisibly?), have it run the code, close itself and
return the results. What do you think, is it possible???

Please let me know if you have any ideas.

Thx!!!

Consider using an internal frame (<iframe>), and look at this document
:

http://www.oreillynet.com/pub/a/java...08/iframe.html

You might find what you're looking for.

Nov 23 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2342
by: David C. Holley | last post by:
How would I run a JavaScript function in a *.asp page and then pass the value returned to VBScript for further processing? ***Converting the function to VBScript is *NOT* an option.
6
6290
by: Jim | last post by:
I've just bought a new Windows Server 2003 and I am trying to move an exiting FrontPage website to this new machine. I can't get ASP pages to run. IIS 6.0 has been installed. From the snap-in,...
5
1744
by: Hal Vaughan | last post by:
Is there a way to run a Perl script WITHOUT submitting a form? I want to be able to click an "update" button on a page and have it run a Perl script to update info, without changing the document...
4
4490
by: earwicker | last post by:
I recently deployed a web application which contains a user registration form with the usual fields: name, address, email, password, etc. Each of the TextBoxes uses a validation control to verify...
3
11096
by: Wysiwyg | last post by:
After a server created cookie is processed on the client I want it removed, cleared, or expired in the javascript block but have been unable to do this. If I set a cookie value in the server code...
22
2149
by: Mr Newbie | last post by:
I was thinking about developing a workflow application yesterday and was musing over the different approaches than one could take in restricting specific actions on a ticket( Form ) at any said...
3
1929
by: Jon Delano | last post by:
Hi I was wondering if it were possible to somehow stop a page from posting back to the server and running the server side code. I have a datagrid and the first column is basically a button. I...
14
23110
by: lmttag | last post by:
Hello. We're developing an ASP.NET 2.0 (C#) application and we're trying to AJAX-enable it. We're having problem with a page not showing the page while a long-running process is executing. So,...
2
1888
by: Fabio Mastria | last post by:
My application has to call a webpage with some hidden field, fill their values with some parameters and then call the submit to the form which has the action property set to a page of another web...
0
7128
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7332
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7393
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7502
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
5057
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4715
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1565
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
426
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.