Ask a Question related to ASP.NET General, Design and Development.
-
Mike Szanto #1
Save data to server without postback?
I have an intranet application where some pages display large tables of
editable data. I've designed the page to operate like Microsoft Access
where the user can move from cell to cell and as they change rows it
checks to see if edits have been made and automatically saves the
changes to that row in our SQL database.
Here's my challenge: Everytime the information is posted back to the
server, the page is reloaded at the client(normal asp behavior). This
causes an uncomfortable delay if the table has hundreds of rows because
it could take a few seconds or more to refresh the page if there are
hundreds of rows.
I'm looking for a better approach but I'm not sure where to look.
Ideally, I should be able to post back only the changes made to that
single row and not have to refresh the page at the client because
nothing has changed. I was wondering if some other technology such as
SOAP or XML or web service might be able to accomadate this and if
someone could point me to a good resource (book, website, etc.) that
would give me a jump start.
TIA, Mike
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Mike Szanto Guest
-
Processing Postback Data
I want to access the values submitted by a custom control I wrote (using VB.NET). My control creates an HTML Table and Input type="hidden" tags. All... -
Postback data problem
I am trying to constuct a custom control in ASP.NET 2.0. I want it to collect the information in the control through postbacks, but I can't seem to... -
Postback data
Hi friends, I Have a datagrid. It's for list for categories. I want this list is hyperlink and for postback send Categoriesid. User click this... -
Save data on server with asp script
Hi all ! I did al lot of reading over the last few days and so far I'm still not as fasr as I want to :) I have my director script for my submit... -
save control state and display it after postback
Hi, i built a control which contains two listbox controls and two buttons which uses to transfer elements from one listbox to the other and back.... -
Carl Prothman [MVP] #2
Re: Save data to server without postback?
Mike,
If you are using IE 5.0 (or greater), then you can use IE's WebService Behavior
The WebService Behavior enables client-side script to invoke remote methods
exposed by Web Services, without having to do a postback.
For more information, please see the following MS help file
[url]http://msdn.microsoft.com/workshop/author/webservice/webservice_node_entry.asp[/url]
--
Thanks,
Carl Prothman
Microsoft ASP.NET MVP
[url]http://www.able-consulting.com[/url]
"Mike Szanto" <mszanto@hotmail.com> wrote in message news:#UMuUM5UDHA.2344@TK2MSFTNGP09.phx.gbl...> I have an intranet application where some pages display large tables of
> editable data. I've designed the page to operate like Microsoft Access
> where the user can move from cell to cell and as they change rows it
> checks to see if edits have been made and automatically saves the
> changes to that row in our SQL database.
>
> Here's my challenge: Everytime the information is posted back to the
> server, the page is reloaded at the client(normal asp behavior). This
> causes an uncomfortable delay if the table has hundreds of rows because
> it could take a few seconds or more to refresh the page if there are
> hundreds of rows.
>
> I'm looking for a better approach but I'm not sure where to look.
> Ideally, I should be able to post back only the changes made to that
> single row and not have to refresh the page at the client because
> nothing has changed. I was wondering if some other technology such as
> SOAP or XML or web service might be able to accomadate this and if
> someone could point me to a good resource (book, website, etc.) that
> would give me a jump start.
Carl Prothman [MVP] Guest
-
Mike Szanto #3
Re: Save data to server without postback?
Carl,
That's exactly what I'm looking for.
I had an inkling that webservices would do it but didn't know what to
look for. "Web Services Behavior" looks like it will be the answer.
This looks to be so much more efficient than than the traditional
post/get methodology, I'm surprized there's not much discussion on it in
these newsgroups.
Are you using this and if so, what is you opinion on this methodology
vs. Post/Get.
Thanks again,
Mike
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Mike Szanto Guest
-
Carl Prothman [MVP] #4
Re: Save data to server without postback?
"Mike Szanto" <mszanto@hotmail.com> wrote
Cool! ;-)> That's exactly what I'm looking for.
>
It may be due to that fact that this solution only works with IE 5.x and greater...> I had an inkling that webservices would do it but didn't know what to
> look for. "Web Services Behavior" looks like it will be the answer.
>
> This looks to be so much more efficient than than the traditional
> post/get methodology, I'm surprized there's not much discussion on it in
> these newsgroups.
>
I prefer the IE Web Service behavior since the screen doesn't flicker> Are you using this and if so, what is you opinion on this methodology
> vs. Post/Get.
>
when getting data, unlike a post back. Athough it's a bit more work
since you are working with client-side code, which IMHO, Visual
Studio .NET's ASP.NET designer is really not geared up for...
--
Thanks,
Carl Prothman
Microsoft ASP.NET MVP
[url]http://www.able-consulting.com[/url]
Carl Prothman [MVP] Guest
-
bruce barker #5
Re: Save data to server without postback?
actually netscape 7 has web service support builtin (no need for a bunch of
javascript) and flash also supports web services.
-- bruce (sqlwork.com)
"Carl Prothman [MVP]" <carlpr@spamcop.net> wrote in message
news:#ZH1tKSVDHA.1748@TK2MSFTNGP12.phx.gbl...greater...> "Mike Szanto" <mszanto@hotmail.com> wrote>> > That's exactly what I'm looking for.
> >
> Cool! ;-)
>>> > I had an inkling that webservices would do it but didn't know what to
> > look for. "Web Services Behavior" looks like it will be the answer.
> >
> > This looks to be so much more efficient than than the traditional
> > post/get methodology, I'm surprized there's not much discussion on it in
> > these newsgroups.
> >
> It may be due to that fact that this solution only works with IE 5.x and>>> > Are you using this and if so, what is you opinion on this methodology
> > vs. Post/Get.
> >
> I prefer the IE Web Service behavior since the screen doesn't flicker
> when getting data, unlike a post back. Athough it's a bit more work
> since you are working with client-side code, which IMHO, Visual
> Studio .NET's ASP.NET designer is really not geared up for...
>
> --
>
> Thanks,
> Carl Prothman
> Microsoft ASP.NET MVP
> [url]http://www.able-consulting.com[/url]
>
>
>
>
bruce barker Guest



Reply With Quote

