473,511 Members | 10,195 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Opinions: Is Remote Scripting Worthwhile?

One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.

Nov 19 '05 #1
6 3242
There is a feature in ASP.NET by the name of script callbacks that
will do what I think you need. Dino has a good article explaining the
details of the feature, and also how you could implement the feature
with today's 1.1 apps:
http://msdn.microsoft.com/msdnmag/is...8/CuttingEdge/

HTH,

--
Scott
http://www.OdeToCode.com/blogs/scott/

On 22 Apr 2005 07:08:02 -0700, li**@starways.net wrote:
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.


Nov 19 '05 #2
I don't see why it would work wiht ASP but not with ASP.NET (actually we
used this in one of our ASP.NET page to update a dropdownlist).

As a side note ASP.NET 2.0 will include these kind of features (I believe
it's called server side callbacks and based on XMLHTTP).

Try for example :
http://msdn.microsoft.com/msdnmag/is...8/CuttingEdge/

Patrice

--

<li**@starways.net> a écrit dans le message de
news:11**********************@l41g2000cwc.googlegr oups.com...
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.

Nov 19 '05 #3
the approach is making a comeback. there are more modern approaches then asp
RS (whioch used a java applet or iframe for backend communication). most
modern browsers support calling webservices (IE requires a behavior as its
not built in like other browser), and most support a low level object
XMLHTTP (oddly enough first stolen from IE by netscape, but now common) that
can be used to pass xml back

asp.net 2.0 and google maps use this approach (though google uses iframes,
and the httpxml object to parse xml)

-- bruce (sqlwork.com)

<li**@starways.net> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.

Nov 19 '05 #4
The latest implementation is being called AJAX, a term which seems to be
catching on.
A(synchronous) JA(vascript) X(ml).

--
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
<li**@starways.net> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.

Nov 19 '05 #5
The latest implementation is being called AJAX, a term which seems to be
catching on.
A(synchronous) JA(vascript) X(ml).

--
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
<li**@starways.net> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.

Nov 19 '05 #6
We have been using REmote Scripting with a very large ASP.Net application
using -the free implementation from thycotic.com. It was nice and smooth

Shahid Siddiqui
Information Solutions Deptt.
E & Y Pakistan

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:O8**************@TK2MSFTNGP12.phx.gbl...
The latest implementation is being called AJAX, a term which seems to be
catching on.
A(synchronous) JA(vascript) X(ml).

--
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
<li**@starways.net> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
One of the things I hate the most about ASP.NET is the postback of an
entire page just to update a single field. So I was looking around,
and I came across Remote Scripting.

See, when I write ASP pages, I usually have a hidden iframe on the page
that I post to. And onload, that hidden page copies the results back
up to the parent. I work in an IE only environment, so I can get away
with that.

And it's nice. Seamless. It's nice for the user, and I don't have to
deal with refilling fields unnecessarily.

But the same trick doesn't work with ASP.NET, because it's server
based. Remote Scripting, in theory, should do much the same thing.

So here are my questions:

* Have any of you worked with Remote Scripting in your ASP.NET apps?

* Is it worth it? Is it a mess? If I decide to jump into the deep
end, am I going to regret it, or is this a practical solution?

Opinions for and against are welcome. I'm wholly ignorant on the
subject.


Nov 19 '05 #7

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

Similar topics

4
6415
by: O.Gir | last post by:
Hi all, can't manage to do it ..... was so easy under solaris .... anybody knows how to get free disk space on remote disks ??? (with both local and remote *$#@%§&* machines running *$#@%§&*...
10
3143
by: SW | last post by:
I have a Web application that uses Remote Scripting to provide dynamic data to a web page. I am testing the application in Internet Explorer 6 SP1 running on Windows XP Professional. When I use...
3
1904
by: CJM | last post by:
I have a form where I want to be able to validate a field against a DB *before* the form has been submitted. After doing a bit of homework, it seems there are two general approaches: 1) Remote...
4
1709
by: Dimitris | last post by:
Hello, I have a problem that it seems easy but its really not. I am using Microsoft remote scripting for a site that I am making. Everything is going pretty good except one thing. My values which I...
2
1489
by: Xavier MT | last post by:
Hi, does anybody use remote scripting on your asp pages? I want to upgrade to asp.net but I cannot include the remote scripting because I'm already using VB as a server language. Any ideas?
1
1063
by: Vijay Kerji | last post by:
Hi, Using remote scripting in .NET, is it possible to operate on the server controls? i.e. I call a method foo() of A.aspx, using remote scripting. Inside foo(), can I Populate a datagrid or...
4
2482
by: russzee | last post by:
Hi, I want to populate my client's webpage (Remote Server) automatically through my Server and Database by having him just paste a javascript on his webpage. I have read up about Microsoft...
1
3050
by: Ramdas S | last post by:
Hello, I am looking at ways I can scrap the content of a remote url and make that available as a javascrpt string to a program running under another domain. I am able to easily scap contents...
3
9714
by: axelman | last post by:
Hi guys, I'm using Classic ASP, IIS6, IE 7, FF 3 I've developed a vb script to downloand files hosted in my server (zip, doc, pdf, jpg, xls, et. etc.) it's very straight forward and there's a ...
0
7148
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
7430
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
5673
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,...
1
5072
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
4743
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
3230
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1581
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 ...
1
790
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
451
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.