Ben -
I looked at everything that was in your list and even copied you
web.config. Things are still not working on the web but are fine on
my machine.
For your information, I am just trying a VERY basic example and I
can't get it to work on the web. Here is the code for the page:
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePartialRendering="True" />
<asp:Label ID="Label1" runat="server" Text="Label"
Width="125px"></asp:Label><div>
This is a test screen<br />
<br />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Label ID="Label2" runat="server" Text="Label"
Width="125px"></asp:Label>
<asp:Button ID="Button1" runat="server"
OnClick="Button1_Click" Text="Button" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>
Do you see anything stupid that would prevent it from working on the
web but allow it to work locally?
As I said before, any help would be appreciated.
Thanks again,
Schemckel
On Apr 1, 10:28 pm, "Ben Rush" <kwen...@yahoo.com> wrote:
> I'm trying to put together a list of reasons ASP.Net AJAX seems to break on
> people's sites here:http://www.ben-rush.net/blog/PermaLi...26-5641-401b-9....
>
> If any of those don't work for you, let me know and we'll work through it
> (granted the list is small at the moment, but I'm just starting to jot these
> things down).
>
> --
> ~~~~~~~~~~~
> Ben Rushhttp://www.ben-rush.net/blog
>
> "schmeckel" <ira...@netins.net> wrote in message
>
> news: oups.com...
>
>
>
> >I am trying to use some very basic AJAX functionality (update panel
> > for partial page update) on my website. When I run my webpage in VS
> > 2005, the partial page update works fine. However, when I upload the
> > page to my website and try running it, the page updates as a full page
> > update rather than a partial page update. I believe the web.config
> > I'm using is correct and I have also put the System.Web.Extensions dll
> > in my BIN folder.
>
> > Can anyone tell me if there is something else that has to be done in
> > order to get AJAX functionality to work on the web?
>
> > Any help would be appreciated.
>
> > Thanks,
>
> > Schmeckel- Hide quoted text -
>
> - Show quoted text -