由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - Ajax Toolkit is troublesome in versions
相关主题
[合集] ajax.net的问题一个dropdownlist的问题
asp.net请教一下ASP.NET 难题测试 (1)
asp.net Ajax timer to update panel only but refresh whole page why? Thank you!Answer Re: ASP.NET 难题测试 (1)
.net 1.1 支持AJAX control toolkit 吗?mvc pros and cons
我用asp.net写的网站,各位给提提意见Whidbey
Free Video Training: ASP.NET MVC 3 FeaturesTried Visual Studio 2005 Beta
问一个把gridview放到updatepanel里面的问题选择VB.NET还是 C#?
[转载] 问一个javascript 和 .NET 的问题Why no intellisense for T-SQL?
相关话题的讨论汇总
话题: ajax话题: toolkit话题: session
进入DotNet版参与讨论
1 (共1页)
r****y
发帖数: 26819
1
Ajax is good but toolkit is kind of troublesome.
y********o
发帖数: 2565
2
我也下了那个Atlas Ajax Extension 以及那个Toolkit安装了,但是search不到Micros
oft.Web.Atlas.dll, which 听说is required。我的Visual Web Developer 2005 Expr
ess之Intellisense不认识atlas这个server tag啊。
上哪儿找这个Microsoft.Web.Atlas.dll啊?

【在 r****y 的大作中提到】
: Ajax is good but toolkit is kind of troublesome.
r****y
发帖数: 26819
3
atlas是老版本啊。现在不用了。

Micros
Expr

【在 y********o 的大作中提到】
: 我也下了那个Atlas Ajax Extension 以及那个Toolkit安装了,但是search不到Micros
: oft.Web.Atlas.dll, which 听说is required。我的Visual Web Developer 2005 Expr
: ess之Intellisense不认识atlas这个server tag啊。
: 上哪儿找这个Microsoft.Web.Atlas.dll啊?

y********o
发帖数: 2565
4
用什么?

【在 r****y 的大作中提到】
: atlas是老版本啊。现在不用了。
:
: Micros
: Expr

y********o
发帖数: 2565
5
System.Web.Extensions.dll?

【在 y********o 的大作中提到】
: 用什么?
r****y
发帖数: 26819
6
现在装完ajax.net即可。

【在 y********o 的大作中提到】
: 用什么?
y********o
发帖数: 2565
7
Oh, great. Thx. Let me try it out.

【在 r****y 的大作中提到】
: 现在装完ajax.net即可。
y********o
发帖数: 2565
8
I just googled, are u talking about the ajax.net library for C# by
Michael Schwarz?

【在 r****y 的大作中提到】
: 现在装完ajax.net即可。
r****y
发帖数: 26819
9
no.
http://ajax.asp.net
atlas is gone.

【在 y********o 的大作中提到】
: I just googled, are u talking about the ajax.net library for C# by
: Michael Schwarz?

y********o
发帖数: 2565
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.

相关主题
Free Video Training: ASP.NET MVC 3 Features一个dropdownlist的问题
问一个把gridview放到updatepanel里面的问题ASP.NET 难题测试 (1)
[转载] 问一个javascript 和 .NET 的问题Answer Re: ASP.NET 难题测试 (1)
进入DotNet版参与讨论
y********o
发帖数: 2565
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
发帖数: 1072
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
发帖数: 2565
13
Oh, yes, I have entirely forgotten trigger.

【在 k****i 的大作中提到】
: put the dropdownlist in the updatepanel, or use asynctrigger for the
: updatepanel

y********o
发帖数: 2565
14
Now it works! Thanks.

【在 k****i 的大作中提到】
: put the dropdownlist in the updatepanel, or use asynctrigger for the
: updatepanel

y********o
发帖数: 2565
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?

【在 r****y 的大作中提到】
: no.
: http://ajax.asp.net
: atlas is gone.

r****y
发帖数: 26819
16
这个不清楚。我不用express。

templ
m

【在 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
发帖数: 2565
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
发帖数: 26819
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
发帖数: 2565
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

1 (共1页)
进入DotNet版参与讨论
相关主题
Why no intellisense for T-SQL?我用asp.net写的网站,各位给提提意见
sqlserver express 安装后看不到内容Free Video Training: ASP.NET MVC 3 Features
silverlight问一个把gridview放到updatepanel里面的问题
SilverLight 4 is coming[转载] 问一个javascript 和 .NET 的问题
[合集] ajax.net的问题一个dropdownlist的问题
asp.net请教一下ASP.NET 难题测试 (1)
asp.net Ajax timer to update panel only but refresh whole page why? Thank you!Answer Re: ASP.NET 难题测试 (1)
.net 1.1 支持AJAX control toolkit 吗?mvc pros and cons
相关话题的讨论汇总
话题: ajax话题: toolkit话题: session