CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > visual_studio.visual_studio_2005 Tags:
Item Type: NewsGroup Date Entered: 3/16/2007 4:10:56 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 12 Views: 40 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
13 Items, 1 Pages 1 |< << Go >> >|
cyberwin
Asp.Net User
HUGE problem with AJAX extensions in VS20053/16/2007 4:10:56 PM

0/0

On some of my pages, I get an error using <asp:UpdatePanel...>

The page works when run, just that the IDE shows an error. This wouldn't be a problem except that I have elemenets inside the update panel that are not exposed in the codebehind...

I have read some about this, and I have seen some solutions, such as opening your master page, etc... I have done all this. Just not sure what to do.. this is starting become quite troublesom!

Any ideas? 


Andrew S. Erwin
Information Technology
Peaches Uniforms
[email protected]

AjaxButter
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/16/2007 6:49:02 PM

0/0

I find that the errors usually occur when there is another error somewhere in the application (not always true but a possibility).  As far as seeing your variables in the code behind, I usually can get them to show up if you save anychanges on the aspx page and then do a build page you will usually see them in code behind at that point.  If it becomes to much of an issue one solution I find works ok is to make a single Test page in your project and don't tie it to a master page and when you need to see intellisense your not normally getting just copy everything into the test page and try it.  Not the most elegant but it seems to work.

 If you find a better solution let me know.

AjaxButter

cyberwin
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/16/2007 6:51:48 PM

0/0

well, I ended up closing the master page and reopening it... which worked, and then about an hour later, it was happening again.

I have heard that this is an issue, but I am not sure why? And is Microsoft planning on addressing the issue? 


Andrew S. Erwin
Information Technology
Peaches Uniforms
[email protected]

AjaxButter
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/16/2007 7:03:42 PM

0/0

Yeah that sometimes works also.  Im guessing its an issue just because ajax works in a manner that visual studio was not initially designed for but I could be wrong about that.  I would guess that it would be something they would plan on fixing but at a very low priority level.  Maybe someone on the Ajax team or Visual studio developer can shed some light on if this will be corrected.

AjaxButter

Mikhail Arkhipo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/16/2007 7:27:09 PM

0/0

Did you delete old Atlas binaries from bin after installing final Ajax release? You may also have to fix web.config if you used older version of Ajax.

http://ajax.asp.net/documentation/Migration_Guide_CTP_to_RTM.aspx

http://ajax.asp.net/documentation/Migration_Guide_RC_to_RTM.aspx

http://ajax.asp.net/documentation/AspNet_AJAX_CTP_to_RTM_Whitepaper.aspx

This has nothing to do with Visual Studio. Atlas Ajax is a set of updated controls which VS is able to handle without any changes. The issue is that when you upgraded to Ajax RTM new assemblies are installed in GAC. When you also have older assemblies in bin intellisense engine is getting confused which ones to use as they contain same types.


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
AjaxButter
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/16/2007 9:27:58 PM

0/0

I am running the latest version of ajax and toolkit and still experience that every now and then but like I said its sparatic. There are no old dll's in the bin and I have removed without problems all old version of ajax.  As far as the web.config I have been very vigilant about keeping it up to date as soon as i install a newer version i update the config using white papers that were released with that version.  Not sure if there is any temporary files that may have gotten created that didnt get deleted after an update that possibly cause the issue with intellisense engine?  As I said it almost seems to surface when you introduce another error on the page but that is not always the case. 

AjaxButter

derekgo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/19/2007 2:02:28 PM

0/0

I also have this problem, specifically when using Master Pages with Update Panel.  scriptmanager control is in the master page, as it should be, but adding an updatepanel to the web page itself causes the "element is not a known element" error.

This is a clean install of VS2005 and neither CTP or RC were previously installed.

I've seen various references to this problem elsewhere, but can't seem to locate a definitive solution.  If this is a widespread issue I can't see how the AJAX components are useable.

Derek

Mikhail Arkhipo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/19/2007 4:41:54 PM

0/0

Is this stock VS or SP1? There was a bug in VS that required you to keep master page open to get intellisense in the content page. This is fixed in SP1.
Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
AjaxButter
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/20/2007 3:50:24 PM

0/0

This is with SP1 in my case

Mike Russo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/20/2007 9:17:17 PM

0/0

I installed Visual Studio 2005 Service Pack 2 on the suggestion of another posting for this problem and now all Intellisense squiggles are gone.  I, too, saw these errors appear sporatically when using Master pages (they appeared on the Content pages).
AjaxButter
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/20/2007 10:01:40 PM

0/0

Not sure if you meant Service Pack 1 for visual studio.  Don't think there is a SP 2 for visual studio yet unless its in very early stages of beta.  You are correct though the issue appears on content pages that have a master page set.  The error list usually will fix itself within 5 mins or so of being on the page.

 AjaxButter

derekgo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/21/2007 4:54:16 PM

0/0

I've just installed SP1 and this seems to fix the problem in any new Ajax enabled web sites but not in and older sites to which Ajax components are added. 

So do I need to add specific web.config settings to the older site to make this work?

Derek

Mikhail Arkhipo
Asp.Net User
Re: HUGE problem with AJAX extensions in VS20053/21/2007 5:11:00 PM

0/0

Yes. You can fing migrations guides here:

http://ajax.asp.net/documentation/Migration_Guide_CTP_to_RTM.aspx

http://ajax.asp.net/documentation/Migration_Guide_RC_to_RTM.aspx

http://ajax.asp.net/documentation/AspNet_AJAX_CTP_to_RTM_Whitepaper.aspx


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
13 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Foundations of ASP.NET AJAX Authors: Robin Pars, Laurence Moroney, John Grieb, Pages: 268, Published: 2007
Beginning DotNetNuke Skinning and Design: Skinning and Desing Authors: Andrew Hay, Nina Meiers, Shaun Walker, Pages: 432, Published: 2007
Professional Ajax Authors: Nicholas C. Zakas, Jeremy McPeak, Joe Fawcett, Pages: 598, Published: 2007
Visual Studio 2008 All-In-One Desk Reference For Dummies Authors: Rick Leinecker, Vanessa L. Williams, Pages: 816, Published: 2008
Programming ASP.NET AJAX Authors: Christian Wenz, Pages: 454, Published: 2007
Web Development, Silverlight, and ASP. NET AJAX: From Novice to Professional Authors: Laurence Moroney, Pages: 427, Published: 2008
ASP.NET AJAX Programmer's Reference: With ASP.NET 2.0 Or ASP.NET 3.5 Authors: Shahram Khosravi, Pages: 1522, Published: 2007
Beginning ASP.NET 2.0 AJAX: Written and Tested with the Final 1.0 Release Version of ASP.NET AJAX for ASP:NET 2.0 Authors: Wallace B. McClure, Paul Glavich, Scott Cate, Steve C. Orr, Craig Shoemaker, Steven A. Smith, Jim Zimmerman, Pages: 344, Published: 2007
RadControls for ASP.NET: A Step By Step Learning Guide Authors: unknown, Pages: 0, Published: -1
Silverlight 1.0 Authors: Devin Rader, Jason Beres, J. Ambrose Little, Grant Hinkson, Pages: 288, Published: 2007

Web:
AJAX : The Official Microsoft ASP.NET Site NET AJAX Extensions. ASP.NET AJAX Support in Visual Studio 2008: ... About this Site. Questions or problems with www.asp.net? ...
Download details: ASP.NET 2.0 AJAX Extensions 1.0 Source Code Jan 30, 2007 ... NET AJAX Source Code provides the source code and debugging symbols for ... NET 2.0 AJAX Extensions 1.0; Visual Studio 2005 or Visual Web ...
How to download Ajax Extension to VS 2005 - ASP.NET Forums Once you have the setup just run it and ajax extension feature will be installed in your system . In order to check it just open VS2005 goto ...
vsnet general VS2005 AJAX Toolkit NET 2.0 AJAX Extensions\AJAXControlToolkit\Binaries\AjaxControlToolkit.dll is not a Microsoft .NET module I have VS2005 full version with ...
ASP.NET AJAX > Installing ASP.NET AJAX NET 2.0 AJAX Extensions, which is a server framework, and the Microsoft AJAX Library, ... NET AJAX with Microsoft Visual Studio 2005 or Microsoft Visual Web ...
.net and ajax and microsoft visual studio 2005 Resources ... NET AJAX Extensions Source Code download installs the source code and .... Sir, Does anyone having problem using visual studio.net 2005 professional edition ...
ASP.NET AJAX and Windows Mobile - Huge Breakthrough - You Can Take ... The problem is that the *.browser files included with ASP. .... concerned that the VS2008 AJAX features and the VS2005 AJAX Extensions might interfere with ...
Updatepanel and asp controls looks unknown : VS2005, ASP.NET 2.0 ... Aug 13, 2008 ... I am new in developing web application, I am trying to use ajax controls ... Tags: VS2005, ASP.NET 2.0, AJAX Extension, Internet Explorer 7 ...
Daron Yöndem - ASP.NET 2.0 AJAX Extensions 1.0 and Visual Studio 2008 Dec 20, 2007 ... NET 2.0 which we already had in Visual Studio 2005 with AJAX Extension 1.0. Actually there is no problem developing further an ASP. ...
Add MS AJAX Extensions to a Visual Studio 2005 Setup Project Jun 30, 2008 ... MS AJAX Extensions is an assembly (DLL) that must be present on the target system in order for your AJAX-enabled ASP.




Search This Site:










vs 2005 problems with ajax updatepanel controls

can i develop in vista and deploy to xp?

unable to open server explorer

change default path of .sln file

vs 2005 c++ compiler

please help on it

how to turn off alphabetical ordering of tag properties?

go to definition is not going to code, instead it goes to meta data

remote debugging with vs2005 with a domain account

simple separator line

scripting asp.net impersonation

how to us the asp.net design templates in vs2005?

tableadapter query wizard "select which returns rows" shaded/disabled

asp.net 2.0 application error

short cut for..??

use crystal report or reporting service in sql 2005?

"circular file references are not allowed" after running the upgrade wizard

how to change dataview background color

ide reformatting html switching from source to design and back

passing parameters for web service testing

asp.net page model with code behind and server side script different to version 1.1

sharepoint sdk and vs 2005

is there guided tour for vs 2005 as for vwd ?

vs 2005: solution issue

getting errorpage 502

vs 2005 service pack 1

slow performance when viewing data or datasets

rowid of datalist

unable to access to security tab of asp web site administrator tool

network connection detection

  Privacy | Contact Us
All Times Are GMT