Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
anyone know of some well written (but not too complex) ASP.NET web applications/websites that i could download from code.google.com or something? i just want to peek at how some other projects look to get some ideas for how to structure my project before it goes live. many thanks.
Check here : Microsoft Official ASP.NET Starter Kits
Take a look at The Code Project. Lots of good stuff there.
CodePlex has a lot of the microsoft asp.net open source projects, also a good place to start
I would recommend using ASP.NET MVC 2 for new web development.
You can find proper 'real-world' sample application called NerdDinner and 185-page PDF walkthrough 'how-each-line-was-written on Code Plex. Nerd Dinner has many nice features, like intergration with maps or OpenID.
Running app is here: http://www.nerddinner.com/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I found some really good solutions alike : CollabNet (on grails) and others
But when I want to make some changes for my own I really want it being ASP.NET based. Sadly I can't find good solution for it.
Is there open-source project-management systems on asp.net ?
Added : So I'm looking for something that will highlight and browse sources and shows the changes. - that is my main tasks.
Here's a listing of mostly all the ASP.net open source projects.
The majority are not really project management though. There is issue tracking though which can be part of project management:
http://wiki.asp.net/page.aspx/388/aspnet-open-source-projects/
try bugnet. Though its much of a bug tracker but maybe it helps.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have been looking for some good MVC2 cheatsheets to help a new team of .NET developers get used to some of the basics of MVC as a pattern and also MVC2 as a microsoft framework.
I found a few examples for MVC1 in relation to the HTML helpers but nothing that including the new features of MVC2.
Where can I find some cheat sheets for MVC2?
RedGate has a good MVC poster you can download, but this doesn't go into great depth on the objects and properties in MVC.
Alternatively there are a few MVC 1 posters here.
http://devcheatsheet.com/tag/aspnet-mvc/
Red Gate has a great MVC Request Handling poster
There are several MVC posters available here (there are at leave 4 MVC ones):
-Removed Link Chrome is showing Malware error
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have learnt most of the main skill points in ASP.NET model, eg how to use a GridView. I would like to find some complete website with source code to analyse/observe, but so far it seems on the internet most learning resources are dealing with a specific topic. Is it possible to find some?
There are lots of open source asp.net websites out there.
See this list from the Microsoft asp.net site, in particular the starter kits and samples section.
I suggest you download and install the free Web Platform Installer from Microsoft. In the tab Web Applications you can find a lot of ready made applications to learn from.
Check out this video: http://www.asp.net/general/videos/build-your-first-asp-net-application-with-asp-net-web-forms
It explains well where to start and how to create "Hello World" type of application.
Don't bother with Web Platform Installer/other advanced starting kits because they are too complex for someone new with the platform.
There seems to be a lack of sample asp.net websites with available source code. Note an open-source website does not mean you can obtain the website. You may have to buy the website to view the open source. However I did find a large number of real-world websites with available source code in Chinese.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
My client has a busy traffic site with a big amount of pages, ASP.NET's built-in cache solutions is good, but it only stores content into the memory. Since the site has a big amount of pages, so I think disk caching would be a better idea. But after searching I didn't find a solution, any suggestions?
There is the ConcurrentCache project on codeplex which has support for 4 caching modes:
Memory
Files
Compressed
Auto
I can't say much about the project as I only just found it myself but I'm giving it a go right now.
ASP.NET 4.0 allows you to write your own cache provider. Scott Gu's blog discusses the details.
.Net 4 lets you write your own using OutputCacheProvider and there may be some examples out there. No doubt someone will roll out an open source project around this when .Net 4 gets more traction.
There was one in ASP.Net 2.0 Betas apparently, but it got removed in the RTM. You can still find references to the web.config DiskCache parameter.
This gist is based on Scott Mitchell's article.
DiskCache.NET is a library that lets you cache data in a file.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Any good ones?
So far I have found IZWebFileManager, OXFileManager and AWS File Picker. The file manager should be able to delete, copy, rename, download & upload files.
You have WebFileManager created by our very own Jeff Atwood
(shameless plug)
The question is old, but it may still help someone:
http://elfinderaspnet.codeplex.com/
Uses elFinder as frontend and IHttpHandler as backend so it is compatible with WebForms and MVC.
Try here this manager, it can to you will approach.
http://www.ajaxfilebrowser.com/?CrossDomain
I used HTTPCommander. Telerik also has a file manager control in their asp.net suite.