473,725 Members | 2,169 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.A tlas.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 1886
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.nospamw rote in message
news:65******** *************** ***********@mic rosoft.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.A tlas.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 <configSectiont wice
and the <configSectioni s 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.netw rote in message
news:%2******** ********@TK2MSF TNGP02.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.nospamw rote in message
news:65******** *************** ***********@mic rosoft.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.A tlas.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 <configSectionn ode directly
below the <configurationn ode.

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.A tlas.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 <configSectiont wice
and the <configSectioni s 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.netw rote in message
news:%2******** ********@TK2MSF TNGP02.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.nospamw rote in message
news:65******** *************** ***********@mic rosoft.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.A tlas.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.goo glegroups.com.. .
I had the same issue.

All I did to fix this was to move the <configSectionn ode directly
below the <configurationn ode.

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.A tlas.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 <configSectiont wice
and the <configSectioni s 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.netw rote in message
news:%2******** ********@TK2MSF TNGP02.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.nospamw rote in message
news:65******** *************** ***********@mic rosoft.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.A tlas.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
1629
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 been looking at these and certainly there needs to be a solution that's integrated with MS.NET, easy to use, and well supported to production environments. That's why I ask -- can there ever possibly be a real (free or paid) competitor to...
0
937
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, and added the atlas dll to the bin folder. I can get a basic updatepanel to work in the root directory, however if i put the same page in my sub-directory, which is a secure folder that requires users to log in to get to it, then the update panel...
2
1798
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. Using buttons for loading new content works fine. But i still want to use a function which is callable per javascript. I think this way is more flexable than using the Buttons, becaus every button needs it's own Sub-Routine. But i want to have...
2
1268
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 question is: how to use Atlas with existing pages? Thanks Bob
4
2226
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 written seems to work fine on my local machine but when I upload it and execute it on the server the page doesn't use AJAX. (It reloads the entire page each time I make a change). I've loaded atlas on the server and I've uploaded several atalas...
3
1554
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 need to create a specific Atlas project. But what I need is to just adapt Atlas on existing pages, so my questions are: Can I simply add Atlas controls like UpdatePanel on an existing web application page? If so, do I need to adjust some kind of...
1
3528
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 javascript, nothing really having to do with ASP.NET... I'm attempting to put together an application that consists of several GridView controls each bound to some xml data. Each table exists in its own update panel. The two effects I'm going for are:
0
1122
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
2543
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, and lets say I have a button as a trigger which runs a function in my code behind to add a textbox to the updatePanel, when the form is submitted does this control actually "exist" as such on the
0
8888
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9113
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8097
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4519
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3221
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2635
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.