【在 y********o 的大作中提到】 : I just googled, are u talking about the ajax.net library for C# by : Michael Schwarz?
y*o
10 楼
Yes, I've removed the old ones and installed the new ones. I have been testing the new ones with no luck. IntelliSense recognizes all AJAX controls such as ScriptManager and UpdatePanel. But, my AJAX is not working. I have an counter outside UpdatePanel, and a counter inside UpdatePanel, both counters keep incrementing each time I click a test dropdownlist outside the UpdatePanel. The page looks like this: counter1 [ dropdownlist ] (auto post back enabled) 【在 r****y 的大作中提到】 : no. : http://ajax.asp.net : atlas is gone.
y*o
11 楼
I think my implementation of the counters are correct. protected void Page_Load(object sender, EventArgs e) { if (!(Page.IsPostBack)) // If page is loaded the 1st time. { // Create two counters with initial values 0 // in the Session. Session["counter"] = 0; Session["innerCounter"] = 0; } else // Otherwise. { // Retrieve counter value from Session. int outerCounter = (int)S
【在 y********o 的大作中提到】 : Yes, I've removed the old ones and installed the new ones. : I have been testing the new ones with no luck. : IntelliSense recognizes all AJAX controls such as ScriptManager and : UpdatePanel. : But, my AJAX is not working. I have an counter outside UpdatePanel, : and a counter inside UpdatePanel, both counters keep incrementing each : time I click a test dropdownlist outside the UpdatePanel. : The page looks like this: : counter1 : [ dropdownlist ] (auto post back enabled)
k*i
12 楼
put the dropdownlist in the updatepanel, or use asynctrigger for the updatepanel
【在 y********o 的大作中提到】 : Yes, I've removed the old ones and installed the new ones. : I have been testing the new ones with no luck. : IntelliSense recognizes all AJAX controls such as ScriptManager and : UpdatePanel. : But, my AJAX is not working. I have an counter outside UpdatePanel, : and a counter inside UpdatePanel, both counters keep incrementing each : time I click a test dropdownlist outside the UpdatePanel. : The page looks like this: : counter1 : [ dropdownlist ] (auto post back enabled)
y*o
13 楼
Oh, yes, I have entirely forgotten trigger.
【在 k****i 的大作中提到】 : put the dropdownlist in the updatepanel, or use asynctrigger for the : updatepanel
y*o
14 楼
Now it works! Thanks.
【在 k****i 的大作中提到】 : put the dropdownlist in the updatepanel, or use asynctrigger for the : updatepanel
y*o
15 楼
I use Visual Web Developer 2005 Express both in my office and at home. I installed the AJAX extension and the CTP package on both machines. When I create a new web site from the File menu, AJAX-enabled web site templ ate is available on the machine at my office, but it is not available from m y home pc. What is going on?
【在 y********o 的大作中提到】 : I use Visual Web Developer 2005 Express both in my office and at home. : I installed the AJAX extension and the CTP package on both machines. : When I create a new web site from the File menu, AJAX-enabled web site templ : ate is available on the machine at my office, but it is not available from m : y home pc. What is going on?
y*o
17 楼
Thanks. There is another problem. That is, ajax works on the development machine with the VWD express built-in web server. But if you put the appication on the production server, ajax does not work! Many people are having the problem. Look: http://forums.asp.net/thread/1529217.aspx You have never had this problem, Rod?
【在 r****y 的大作中提到】 : 这个不清楚。我不用express。 : : templ : m
r*y
18 楼
the post was about the old version. For new version of ajax.net, just install it on production server and it works smoothly for me. But you need to install it on production server. Did you do it?
on
【在 y********o 的大作中提到】 : Thanks. : There is another problem. That is, ajax works on the development machine : with the VWD express built-in web server. But if you put the appication on : the production server, ajax does not work! : Many people are having the problem. Look: : http://forums.asp.net/thread/1529217.aspx : You have never had this problem, Rod?
y*o
19 楼
Yes, I did remove the old versions and installed the newer versions on the production server. I would like to re-remove and re-install and see what happens. I am very doubtful that this is gonna help.
【在 r****y 的大作中提到】 : the post was about the old version. : For new version of ajax.net, just install it on production server and it : works : smoothly for me. : But you need to install it on production server. Did you do it? : : on