473,786 Members | 2,426 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
14 1701
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.javas cript message
<11************ *********@h48g2 000cwc.googlegr oups.com>, Mon, 20 Nov 2006
19:06:37, javelin <go************ *@spamgourmet.c omwrote:
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.javas cript 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.c om/faq/ Old RC FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demo n.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.sr c = "/path/to/my/script";
------------

Or, in DOM terms:

------------
var myScriptCall = document.create Element("img");
myScriptCall.sr c = "/path/to/my/script";

//make it invisible but still load
myScriptCall.st yle.width = "0px";
document.body.a ppendChild(mySc riptCall);
-----------

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.javas cript message
<11************ **********@b28g 2000cwb.googleg roups.com>, Wed, 22 Nov
2006 05:36:23, javelin <go************ *@spamgourmet.c omwrote:
>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.c om/faq/ Old RC FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demo n.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.demo n.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
2355
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
6300
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, I have configured "Web Services Extensions" to allow CGI Extensions, ISAPI Extensions, Active Server Pages, FrontPage Server Extensions 2002, Internet Data Connector, Server Side Includes and WebDAV. All of this appears to be running fine.
5
1758
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 in the browser. Is there any way to do that and leave the current page intact in the browser? Thanks! Hal
4
4502
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 the input. On my development server, this form works precisely as expected. When I deploy the app to the production server (a hosting service), the client-side validation quits working altogether. Now, I KNOW that scripts are enabled and working...
3
11124
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 behind and don't use a domain then I can not change or remove that cookie's value on the client. If I subsequently create the cookie again in the codebehind then I actually end up with TWO cookies with the same name in the response. The cookie...
22
2194
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 stage. One approach I have used on other systems is to prevent the action buttons appearing. For example, if one did not have the Role of Administrator, one would be prevented from deleting a ticket not created by oneself. However, it did occur...
3
1936
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 have added a javascript function to the button : Dim btnView As LinkButton = e.Item.Cells(0).Controls(0) btnView.Attributes.Add("onclick", "CheckDictationMode();")
14
23170
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, we're looking for a way to display the page with a "please wait..." message while the process is running, and then, when the process is done, update the page with the actual results/page content. We have a page that opens another browser/page...
2
1900
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 application. all of this, did via javascript. how can i send the data to fill the hidden fields to this web form? Please help me, thank you! Fabio
0
9647
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10363
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10164
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9961
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8989
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7512
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
4066
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 we have to send another system
3
2894
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.