473,320 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

adding atlas controls to an existing web app

I have a question on atlas:
I can create an 'atlas project' and I can add atlas controls fine. but when
I try and add an atlas control to an existing asp.net web app I can't, Why?

I did notice that the web.cofig file is different then a normal web app
web.config.
Do I need to add anything to the web.config file of my existing web app or no?
I have the Microsfot.Web.Atlas.dll referenced in my web app.

what else do I need to do to add atlas/ajax to my existing web app?

Sep 15 '06 #1
5 1871
Yes, you need to add Atlas entries to your web.config.
I suggest you look at the Atlas web.config file and either try and pick out
the pieces you need or just copy it all into your web.config, depending on
how much tinker time you have.

--
I hope this helps,
Steve C. Orr
MCSD, MVP, CSM
http://SteveOrr.net
"igotyourdotnet" <ig************@nospam.nospamwrote in message
news:65**********************************@microsof t.com...
>I have a question on atlas:
I can create an 'atlas project' and I can add atlas controls fine. but
when
I try and add an atlas control to an existing asp.net web app I can't,
Why?

I did notice that the web.cofig file is different then a normal web app
web.config.
Do I need to add anything to the web.config file of my existing web app or
no?
I have the Microsfot.Web.Atlas.dll referenced in my web app.

what else do I need to do to add atlas/ajax to my existing web app?

Sep 15 '06 #2
I did that but got compile errors such as unrecognized sections or can't
have <configSectiontwice
and the <configSectionis only in the file once.

I thought with atlas/ajax you could add components etc to an existing app
without any issues?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.netwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Yes, you need to add Atlas entries to your web.config.
I suggest you look at the Atlas web.config file and either try and pick
out the pieces you need or just copy it all into your web.config,
depending on how much tinker time you have.

--
I hope this helps,
Steve C. Orr
MCSD, MVP, CSM
http://SteveOrr.net
"igotyourdotnet" <ig************@nospam.nospamwrote in message
news:65**********************************@microsof t.com...
>>I have a question on atlas:
I can create an 'atlas project' and I can add atlas controls fine. but
when
I try and add an atlas control to an existing asp.net web app I can't,
Why?

I did notice that the web.cofig file is different then a normal web app
web.config.
Do I need to add anything to the web.config file of my existing web app
or no?
I have the Microsfot.Web.Atlas.dll referenced in my web app.

what else do I need to do to add atlas/ajax to my existing web app?


Sep 15 '06 #3
Hello igotyourdotnet,

In ATLAT project, it not only reference the "Microsoft.Web.Atlas" dll, but
also register many custom configuration sections and httphandlers in the
web.config. You need to also configure them in your own ASP.NET 2.0 web
application. They're:

** custom section handlers:

** httphandlers sections

** httpmodules sections

** compilation/buildprovider sections

And there're also predefined control library tagprefix in the
pages/Controls section.

You should check all of them and copy the same settings to your own web
application.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Sep 18 '06 #4
I had the same issue.

All I did to fix this was to move the <configSectionnode directly
below the <configurationnode.

I also compared my web.config side by side with the SampleAtlas
web.config to ensure that I had everything under the correct node. I
copy/pasted all of the necessary Atlas web.config into my existing
web.config.

Of course, as stated above, make sure you have the
Microsoft.Web.Atlas.dll in your Bin folder and added as a reference.

John wrote:
I did that but got compile errors such as unrecognized sections or can't
have <configSectiontwice
and the <configSectionis only in the file once.

I thought with atlas/ajax you could add components etc to an existing app
without any issues?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.netwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Yes, you need to add Atlas entries to your web.config.
I suggest you look at the Atlas web.config file and either try and pick
out the pieces you need or just copy it all into your web.config,
depending on how much tinker time you have.

--
I hope this helps,
Steve C. Orr
MCSD, MVP, CSM
http://SteveOrr.net
"igotyourdotnet" <ig************@nospam.nospamwrote in message
news:65**********************************@microsof t.com...
>I have a question on atlas:
I can create an 'atlas project' and I can add atlas controls fine. but
when
I try and add an atlas control to an existing asp.net web app I can't,
Why?

I did notice that the web.cofig file is different then a normal web app
web.config.
Do I need to add anything to the web.config file of my existing web app
or no?
I have the Microsfot.Web.Atlas.dll referenced in my web app.

what else do I need to do to add atlas/ajax to my existing web app?
Oct 10 '06 #5
in your first post, you said:
I try and add an atlas control to an existing asp.net web app I can't,
Why?
Exactly what happened when you tried to add the control?

--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com
<Mr*****@gmail.comwrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
I had the same issue.

All I did to fix this was to move the <configSectionnode directly
below the <configurationnode.

I also compared my web.config side by side with the SampleAtlas
web.config to ensure that I had everything under the correct node. I
copy/pasted all of the necessary Atlas web.config into my existing
web.config.

Of course, as stated above, make sure you have the
Microsoft.Web.Atlas.dll in your Bin folder and added as a reference.

John wrote:
I did that but got compile errors such as unrecognized sections or can't
have <configSectiontwice
and the <configSectionis only in the file once.

I thought with atlas/ajax you could add components etc to an existing
app
without any issues?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.netwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Yes, you need to add Atlas entries to your web.config.
I suggest you look at the Atlas web.config file and either try and
pick
out the pieces you need or just copy it all into your web.config,
depending on how much tinker time you have.
>
--
I hope this helps,
Steve C. Orr
MCSD, MVP, CSM
http://SteveOrr.net
>
>
"igotyourdotnet" <ig************@nospam.nospamwrote in message
news:65**********************************@microsof t.com...
>>I have a question on atlas:
>I can create an 'atlas project' and I can add atlas controls fine.
but
>when
>I try and add an atlas control to an existing asp.net web app I
can't,
>Why?
>>
>I did notice that the web.cofig file is different then a normal web
app
>web.config.
>Do I need to add anything to the web.config file of my existing web
app
>or no?
>I have the Microsfot.Web.Atlas.dll referenced in my web app.
>>
>what else do I need to do to add atlas/ajax to my existing web app?
>>
>
>

Oct 10 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: geekboy0001 | last post by:
Just trying to get some opinions out there... There are tons of Ajax libraries out there... Ajax.NET Professional, ComfortASP.NET, ZumiPage, etc. etc... Microsoft has their own too, Atlas. I've...
0
by: ian | last post by:
Hi, I have installed the June CTP of Atlas and am trying to add some basic Atlas functionality to an existing ASP.NET 2.0 website. I have made all of the necessary changes to the web.config,...
2
by: A.Wussow | last post by:
Hi Everybody, i want to load dynamically content from some user controls (with forms, or some data-controls) using atlas. So i use an UpdatePanel for loading the user control into a placeholder....
2
by: Bob | last post by:
Hi, I discovered the new framework 'Atlas' and i want to use it on my existing application. The problem is that on any page of my existing page, the tag <atlas: .../is not recognized. So my...
4
by: Brad Baker | last post by:
I'm trying to implement a gridview control using atlas & asp.net per the following article: http://weblogs.asp.net/scottgu/archive/2005/12/26/433997.aspx My frustration is that the page I've...
3
by: Robert Scheer | last post by:
Hi. I think I have some conceptual questions here. I have an asp.net web application up and running and now I intend to use Atlas on some of my pages. I have read that after installing Atlas, I...
1
by: jmdolinger | last post by:
Hi all, I'm a newbie to Atlas (and recently ASP.NET) after coming from a long Java background, also have done quite a bit with an Ajax.NET/ASP.NET 1.1 project, but it was basically all...
0
by: BillE | last post by:
I have the same problem as identified in http://forums.asp.net/thread/1402420.aspx (Atlas Crashing Visual Studio 2005) I'm using VS2005, visual basic.
4
by: Rob Meade | last post by:
Hi all, I played with my first bit of AJAX the other week and was pleasantly surprised that I achieved my goal..now I'd like to try something else.. Question... If I have an updatePanel,...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.