Stories recently tagged with 'Wiki'

New ASP.NET Wiki(weblogs.asp.net)

submitted by wisemxwisemx(8074) 4 years, 3 months ago

Check out the new ASP.NET wiki for a ton of resources on asp.net. Being a wiki, everyone can contribute so go ahead and give it a whirl! http://wiki.asp.net/ read more...

1 comment |category: |Views: 12

tags: another

How to choose the right wiki platform?(ifxplus.com)

submitted by m.casatim.casati(600) 4 years, 5 months ago

If you are looking for a Wiki but having trouble choosing an engine, have a look here read more...

add a comment |category: |Views: 4

tags: another

DotNet Ajax Frameworks(ajaxpatterns.org)

submitted by pedrolimapedrolima(60) 4 years, 10 months ago

DotNet Ajax Frameworks Wiki read more...

add a comment |category: |Views: 26

tags: another

Full C# Tutorial that Anyone can Edit(meshplex.org)

submitted by luke101luke101(15) 5 years, 1 month ago

An easy to follow tutorial on the C#.NET language. This is a beginner tutorial for someone with little programming experience. It will have short and easy to understand examples that will walk the reader through the code. After reading the tutorial you will understand basic programming concepts read more...

add a comment |category: |Views: 10

tags: another

Windows Presentation Foundation Wiki(wpfwiki.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 5 years, 2 months ago

Nuff said. read more...

add a comment |category: |Views: 14

tags: another

.NET Open Source Wiki(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 5 years, 2 months ago

Its GPL'd, built on .NET 2.0, does not require SQL Server 2005, works in a medium trust enviroment (that means that you hosted types can use it!) and has many other features which are listed here... read more...

2 comments |category: |Views: 13

tags: another

.NET Open Source Wiki(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 5 years, 2 months ago

Its GPL'd, built on .NET 2.0, does not require SQL Server 2005, works in a medium trust enviroment (that means that you hosted types can use it!) and has many other features which are listed here... read more...

2 comments |category: |Views: 13

tags: another

NetTiers gets a Wiki (a real one)(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 5 years, 2 months ago

"This is an improvement over the previous "wiki" they had setup but that effort wasn't quite optimal. The old wiki was closed to the public and only contained a handful of canned pages. In any case, the new one is out in the open and ready to go. So if you're a consumer or contributor (or both like me) check it out!" read more...

add a comment |category: |Views: 14

tags: another

TWiki - Enterprise Wiki & Collaboration Platform(twiki.org)

submitted by jasper22jasper22(1320) 5 years, 3 months ago

What is TWiki? TWiki Release 4.1.1 Welcome to TWiki, a flexible, powerful, and easy to use enterprise wiki, enterprise collaboration platform and knowledge management system. It is a Structured Wiki, typically used to run a project development space, a document management system, a knowledge base, or any other groupware tool, on an intranet or on the internet. Web content can be created collaboratively by using just a browser. Users without programming skills can create web applications. Developers can extend the functionality of TWiki with Plugins. Tell a Friend "We use TWiki internally to manage documentation and project planning for our products." said Eric Baldeschwieler, Director of Software Development of Yahoo! "Our development team includes hundreds of people in various locations all over the world, so web collaboration is VERY important to us. TWiki has changed the way we run meetings, plan releases, document our product and generally communicate with each other. We're great fans of your work!" read more...

1 comment |category: |Views: 10

tags: another

Happy anniversary to C# Online.NET!(blog.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 3 months ago

This month marks the one year anniversary of C# Online .NET—the free online C# and .NET encyclopedia which anyone can edit. Read about their progress and milestones.. read more...

add a comment |category: |Views: 3

tags: another

First Windows Workflow(en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 3 months ago

Learn to create and debug a simple Sequential workflow and State Machine workflow in Windows Worklow Foundation (WF). Excerpt: This chapter will show you the code that’s generated when a new workflow project is created, as well as demonstrate how workflow and activities are created as classes. After I introduce you to the code that’s generated, you’ll create a simple Sequential workflow and State Machine workflow. You’ll create both these workflows in both VB and C#, and I’ll show you how to debug the workflows using a console application. read more...

add a comment |category: |Views: 14

tags: another

New WPF Wiki on Channel9(ekampf.com)

submitted by ekampfekampf(3195) 5 years, 4 months ago

There's a new wiki on Channel9 dedicated to WPF development read more...

add a comment |category: |Views: 3

tags: another

SharpForge 0.5.0a-r84 Released(sharpforge.org)

submitted by scottbscottb(325) 5 years, 4 months ago

This release contains Work Item Tracking, Project Forums, Release Management, Subversion Wiki, Browse Source Code. Screenshots available. SharpForge supports collaborative development and the management of multiple software projects. Similar to SourceForge or CodePlex but for your own team or organisation. The software is written in C# for .NET 2.0 it integrates with Subversion for source control and is released under the New BSD License. Other features include, Multi Portal, Multi Project, (planned)News Feeds read more...

add a comment |category: |Views: 10

tags: another

MSDN community content - the right way to go, almost(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 5 months ago

"Quite some time ago I found out MSDN was moving towards a community content driven approach. A wiki style approach to the vast tome of knowledge known to us as the MSDN Library. This was a good move and I wanted to see it blast off as soon as possible. However the implementation has been somewhat lackluster." read more...

add a comment |category: |Views: 0

tags: another

MSDN Community Content(blogs.msdn.com)

submitted by HopcroftHopcroft(200) 5 years, 5 months ago

MSDN recently added Wiki functionality to the portion of the site dealing with Visual Studio 2005 and .NET Framework 2.0. This already looks like it is going to be a great resource - at the time of this post, there were almost 1000 topics with Community Content from over 300 contributors. read more...

3 comments |category: |Views: 3

tags: another

C# Generics Recipes(en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 6 months ago

Learn when and where to use generics and find recipes for using generics to solve problems. Excerpt: A long-awaited feature, generics, is finally here with the advent of Version 2.0 of the C# compiler. Generics is an extremely useful feature that allows you to write less, but more efficient, code. This aspect of generics is detailed more in Recipe 4.1. With generics comes quite a bit of programming power, but with that power comes the responsibility to use it correctly. If you are considering converting your ArrayList, Queue, Stack, and Hashtable objects to use their generic counterparts, consider reading Recipes 4.4, 4.5, and 4.10. As you will read, the conversion is not always simple and easy, and there are reasons why you might not want to do this conversion at all. read more...

add a comment |category: |Views: 16

tags: another