AJAX and .Net

H

HockeyFan

I'm new to AJAX, but wanting to use it in my ASP.Net app. I've done a
simple example that I read about that adds 2 numbers and puts up an
alert box. Now I want to do something real world and having trouble.

I have a form with a bunch of information that the user fills out. I
then an putting in a div that I've given an Id to that I need to have
AJAX populate from another aspx on the server. I'm using ajax.dll,
which allows for creating the javascript proxies for me, but all the
examples I've seen have the routines that your webpage calls, in the
codebehind. My page is Default.aspx. The codebehind has the same
name, of course. In the middle of my form, though, I'd like to have
AuthorizedSigners.aspx to be displayed (inside the named Div).

So at that named Div, I'm trying to figure out how to set up a call to
a function that will cause AuthorizedSigners.aspx to be output inside
that Div. How do I do this?
 
G

Guest

my suggestion is to use an "AJAX" (Remote Scripting) framework that preserves
the stateful nature of the ASP.NET page and does not rely on external
handlers. You could look at Anthem.net (on sourceforge) or if you want to get
more sophisticated, Microsoft ASP.NET AJAX. Both have controls that enable
you to do what you want.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top