In this article you will learn how to successfully setup your own ASP.NET 2.0 application to run as a virtual directory under the Community Server 2.1 website.
DotNetSlackers has been kind enough to publish my article. You can find it here.
If you would like to receive an email when updates are made to this post, please register here
Subscribe to this post's comments using RSS
news of the day a grab bag for what's happening in Community Server Sean Winstead seamlessly adds forums
This week... Announcing the Windows Vista Team Blog, the new and improved blog of the Windows Vista Team
All I wanted was something simple: I would like to have an asp.net 2.0 application "qml" beneath my Community
I get this error:
ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl).
Any help?
:)
What I really need is a tutorial to see how I can use UserControls from CS in this new Default.aspx within my site (under CS application).
Any ideas how to use them?
Thanks :)
solved it inheriting from CommunityServer.Components.CSPage
like this:
public partial class _Default : CommunityServer.Components.CSPage
{
protected void Page_Load(object sender, EventArgs e)
CommunityServer.Components.User currentUser = CommunityServer.Components.CSContext.Current.User;
Label1.Text = currentUser.Username;
}
參考 http://tod1d.net/blogs/tech/pages/Running-ASP.NET-applications-under-Community-Server.aspx 總結 以下步驟將告訴您如何將原本的
Breezback,
Thanks for sharing the solution. I will try it out.
Hi Ben,
This error can be solved by copying the Languages directory from the CS application to the root of your application. In your case it would be 'c:\inetpub\itatennis\Languages'. If you are getting this error, you will probably need to copy the Themes directory from the CS application to the root of your application as well.
Very useful A-1 Prime Time Tutorial from Tod Birdsall on Running ASP.NET applications under Community
FAQ posts contain multiple subject items appropriate to this forum, and will evolve over time with new
In the "how to" article, the newly integrated app is accessed by browsing "to the /vicious subdirectory that contains your Default.aspx page". Do you know of any tutorials on how, for example, to actually integrate it into the site so that it a)has its own tab on the navigation bar and b)loads below the nav bar, not taking over the whole page?
Hi Will,
I have successfully used the Anthem.NET AJAX toolkit alongside Community Server.
http://anthemdotnet.com/
For my purposes, it worked well.
I have not done much with the "Atlas"/ ASP.NET AJAX framework.
Here is a good reference for Running ASP.NET applications under Community Server that I didn't want to
Hi Tod! I am stuck at the same point as Methendra. Maybe this has to do with the new CS version? Can anybody help me or point to a new source to solve this problem? Thank you very much, any help is highly appreciated.
Hey Tod, Great job man!! :)
Your tutorial really helped. The Q&A section on your page is great too... I resolved all the issues from your and readers' responses!!
Cheer!
ytutut