Servefault.com - Stories tagged with ASP.NET
1
votes

SOLVED - 'srcDomainMulti' is not declared. It may be inaccessible due to its protection level

posted by rtpHarryrtpHarry 103 days, 19 hours, 43 minutes ago
Saturday, April 17, 2010 2:39:45 PM GMT
When converting a project from C# to VB I ran into this compiler error which stopped me in my tracks for about 15 minutes. Just when I gave up and decided to rebuild the page by hand inspiration hit and I found my solution... (more)
category: ASP.NET | clicked: 8 | comment | | source: runtingsproper.blogspot.com
tags: ASP.NET, compile error, vb
5
votes

Programmer's Blog: Implementing the Repository Pattern in C# ASP .NET

published 120 days, 1 hour, 36 minutes ago posted by gsanthoshbegsanthoshbe 125 days, 22 hours, 40 minutes ago
Thursday, April 01, 2010 8:46:49 AM GMT Friday, March 26, 2010 11:42:54 AM GMT
Introduction Writing a C# ASP .NET web application which utilizes a database can create increasingly complex code. The more complex code gets, the more difficult it becomes to debug, maintain, and enhance. The Repository design pattern is a way of introducing architecture into your C# ASP .NET web application, which creates a clear layer of separation between your web forms and database accessible layers. The Repository pattern helps organize a web application to form a 3-tier architecture and provide... (more)
category: ASP.NET | clicked: 22 | comment | | source: visualcppsupport.blogspot.com
tags: ASP.NET, C#
4
votes

Simple pager for ASP.NET MVC

published 150 days, 16 hours, 27 minutes ago posted by gpeipmangpeipman 159 days, 15 minutes ago
Monday, March 01, 2010 5:55:25 PM GMT Sunday, February 21, 2010 10:07:24 AM GMT
I needed simple pager for one of my ASP.NET MVC projects. I mean really simple pager – no new types my code should be aware of, no any other chemistry I don’t really need in early stages. As ASP.NET MVC has nothing to offer I wrote my own really simple pager implementation. Here is what I did. (more)
category: ASP.NET | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, pager
5
votes

ASP.NET MVC Performance II: Optimizing resources

published 166 days, 16 hours, 43 minutes ago posted by gpeipmangpeipman 173 days, 41 minutes ago
Saturday, February 13, 2010 5:39:53 PM GMT Sunday, February 07, 2010 9:41:32 AM GMT
In my previous posting about ASP.NET MVC performance I showed you how to combine resources like scripts, style sheets and images. In this posting I will show you how to minimize resources so we don’t waste the bandwidth we got. (more)
category: ASP.NET | clicked: 2 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, optimization, performance
3
votes

ASP.NET MVC Performance I: Combining resources

published 166 days, 16 hours, 43 minutes ago posted by gpeipmangpeipman 173 days, 20 hours, 13 minutes ago
Saturday, February 13, 2010 5:39:53 PM GMT Saturday, February 06, 2010 2:09:42 PM GMT
I wrote a small postings series about how to optimize ASP.NET MVC applications. This posting is small introduction to series and it also introduces first two optimization steps: resources and images combining. (more)
category: ASP.NET | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, optimization, performance
3
votes

Using FullCalendar jQuery component with ASP.NET MVC

published 170 days, 21 hours, 34 minutes ago posted by gpeipmangpeipman 176 days, 16 hours, 45 minutes ago
Tuesday, February 09, 2010 12:48:36 PM GMT Wednesday, February 03, 2010 5:37:23 PM GMT
I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. (more)
category: ASP.NET | clicked: 42 | comment | | source: weblogs.asp.net
tags: ASP.NET, fullcalendar, jQuery, MVC
5
votes

ASP.NET 4.0: How to use application warm-up class

published 170 days, 21 hours, 34 minutes ago posted by gpeipmangpeipman 179 days, 20 hours, 44 minutes ago
Tuesday, February 09, 2010 12:48:36 PM GMT Sunday, January 31, 2010 1:38:14 PM GMT
About week ago I introduced IIS Application Warm-up Module. ASP.NET 4.0 provides separate mechanism for same purposes. ASP.NET 4.0 application warm-up is different and if you like you can use both warm-up methods together. In this posting I will show you how to make ASP.NET 4.0 application warm-up work. (more)
category: ASP.NET | clicked: 4 | comment | | source: weblogs.asp.net
tags: ASP.NET, IIS
4
votes

Creating configuration reader for web and cloud environments

published 177 days, 2 hours, 18 minutes ago posted by gpeipmangpeipman 180 days, 18 hours, 59 minutes ago
Wednesday, February 03, 2010 8:04:29 AM GMT Saturday, January 30, 2010 3:23:57 PM GMT
Currently it is not possible to make changes to web.config file that is hosted on Windows Azure. If you want to change web.config you have to deploy your application again. If you want to be able to modify configuration you must use web role settings. In this blog post I will show you how to write configuration wrapper class that detects runtime environment and reads settings based on this knowledge. (more)
category: ASP.NET | clicked: 2 | comment | | source: weblogs.asp.net
tags: ASP.NET, Azure
3
votes

SOLVED: Compiler error CS1519: Invalid token 'void' in class, struct, or interface member declaration

published 210 days, 23 hours, 29 minutes ago posted by rtpHarryrtpHarry 218 days, 17 hours, 11 minutes ago
Thursday, December 31, 2009 10:54:04 AM GMT Wednesday, December 23, 2009 5:11:43 PM GMT
One for the search engines really but you might want to give this short article a quick read if you have been stumped by the error above. (more)
category: ASP.NET | clicked: 1 | comment | | source: runtingsproper.blogspot.com
tags: article, ASP.NET, bugfix, compile error
3
votes

Reading the ProviderUserKey when using the SqlMembershipProvider

published 210 days, 23 hours, 29 minutes ago posted by rtpHarryrtpHarry 220 days, 10 hours, 11 minutes ago
Thursday, December 31, 2009 10:54:04 AM GMT Tuesday, December 22, 2009 12:12:08 AM GMT
The ProviderUserKey gives access to a unique identifier for each of the members in your membership data store. If you're doing a large amount of lookup's or want to cross link to another table you will find this technique will give you better performance than using the UserName property. (more)
category: ASP.NET | clicked: 1 | comment | | source: runtingsproper.blogspot.com
tags: .Net, article, ASP.NET, membership, MSDN
3
votes

Lots of new software for IIS, ASP.NET, AJAX and PHP this week : BillS IIS Blog : The Official Microsoft IIS Site

posted by GodaddyGodaddy 237 days, 23 hours, 20 minutes ago
Friday, December 04, 2009 11:02:19 AM GMT
ASP.NET MVC 2 beta! The ASP.NET team has been hard at work on the second release of MVC, which is now available to beta test. Phil has a great blog post on the release with links to the download page, readme notes and the source code. There are a bunch of new features in MVC 2 including AsyncController, expression based helpers, improvements with client validation, all new areas support, and more. Read more on Phil’s blog. (more)
category: ASP.NET | clicked: 1 | comment | | source: blogs.iis.net
tags: ASP.NET, ASP.NET MVC 2, MVC
4
votes

Visual Studio 2010 new Intellisense enhancements - Nikolaos Kantzelis' Blog - Talks ASP.NET

published 238 days, 6 hours, 24 minutes ago posted by Webhost4lifeWebhost4life 247 days, 22 hours, 44 minutes ago
Friday, December 04, 2009 3:59:10 AM GMT Tuesday, November 24, 2009 11:38:30 AM GMT
Visual Studio 2010 new Intellisense enhancements In this post I am going to demonstrate through (screenshots mostly) some very handy, useful new features regarding Intellisense that ship with VS 2010. Through these features we can  be more productive. Intellisense is very useful and has been an integral part of VS since its first release back in 2001. Microsoft's main aim is to to have "Intellisense everywhere"  1) Create with VS 2010 an ASP.NET website.Save your website in your local file system... (more)
category: Visual Studio | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET, Visual Studio 2010, VS 2010
6
votes

ASP.NET MVC: Creating reports using Chart control

published 243 days, 1 hour, 28 minutes ago posted by gpeipmangpeipman 250 days, 20 hours, 30 minutes ago
Sunday, November 29, 2009 8:54:32 AM GMT Saturday, November 21, 2009 1:52:35 PM GMT
ASP.NET Chart control is powerful control you can use to add charting support to your web applications. Although chart controls are mainly used with ASP.NET forms it is not very hard to use them also in ASP.NET MVC applications. In this posting I will show you how to use ASP.NET Chart control in ASP.NET MVC application and I will illustrate how to do it easily so you don’t mess up your views. (more)
category: ASP.NET | clicked: 23 | comment | | source: weblogs.asp.net
tags: ASP.NET, chart, MVC, reporting
6
votes

Easily extracting links from a snippet of html with HtmlAgilityPack

published 243 days, 1 hour, 28 minutes ago posted by rtpHarryrtpHarry 252 days, 10 hours, 22 minutes ago
Sunday, November 29, 2009 8:54:32 AM GMT Friday, November 20, 2009 12:00:37 AM GMT
The HtmlAgilityPack is a powerful library that makes screen scraping in asp.net a breeze. This is the second in a continuing series where I demonstrate a way for you to extract all the links from a snippet of html. (more)
category: ASP.NET | clicked: 1 | comment | | source: runtingsproper.blogspot.com
tags: article, ASP.NET, HtmlAgilityPack, screen scraping
5
votes

DiscountASP.NET re: Silverlight Streaming server ending - Microsoft and DiscountASP.NET news

published 247 days, 4 hours, 37 minutes ago posted by Webhost4lifeWebhost4life 253 days, 22 hours, 10 minutes ago
Wednesday, November 25, 2009 5:45:31 AM GMT Wednesday, November 18, 2009 12:12:45 PM GMT
DiscountASP.NET re: Silverlight Streaming server ending Awesome service but it is coming to an end apparently. Microsoft Silverlight Streaming by Windows Live Beta is being discontinued and will eventually be taken down I’ve been using that service since it started and really enjoyed it. Was easy to create WMV webcasts, upload them, then create Silverlight wrappers for ASP.NET sites. What to do now? Well some Developers have mentioned using Channel 9. Great idea. When I mentioned thi... (more)
category: Silverlight | clicked: 2 | comment | | source: weblogs.asp.net
tags: ASP.NET, DiscountASP.Net, Silverlight, Windows Live Beta
5
votes

.NET - Top Ten Articles on ASP.NET

published 248 days, 19 hours, 21 minutes ago posted by IXWebHostingIXWebHosting 257 days, 6 hours, 31 minutes ago
Monday, November 23, 2009 3:01:31 PM GMT Sunday, November 15, 2009 3:52:02 AM GMT
Top Ten Articles on ASP.NET If you have missed on some top articles of ASP.NET on dotnetcurry.com, then this is a must read for you. The Top 10 articles have been decided by our editorial panel based on the popularity of the article, user rating and top views of the articles. The articles have been arranged based on the total views from top to bottom. Let us know if you liked this concept and we may plan to publish a similar list every three months. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetcurry.com
tags: ASP.NET, DotNetCurry
5
votes

The Curly Bracket » Blog Archive » ASP.NET MVC: A Step Backwards?

published 248 days, 19 hours, 21 minutes ago posted by IXWebHostingIXWebHosting 257 days, 6 hours, 34 minutes ago
Monday, November 23, 2009 3:01:31 PM GMT Sunday, November 15, 2009 3:49:08 AM GMT
After a couple of well deserved days off work this week, I’ve been looking into the new(ish) alternative to WebForms for ASP.NET, ASP.NET MVC: Just to give some brief background; ASP.NET MVC sits at the same layer that WebForms do currently, and does not replace ASP.NET, but rather offers an alternative to the traditional ASP.NET development that we’re all used to.  There are some excellent overview artic... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.thecurlybracket.com
tags: ASP.NET, ASP.NET Development, ASP.NET MVC, WebForms
3
votes

ASP.NET MVC: Validating objects using Enterprise Library validation application block

published 253 days, 22 hours, 13 minutes ago posted by gpeipmangpeipman 258 days, 20 hours, 24 minutes ago
Wednesday, November 18, 2009 12:09:21 PM GMT Friday, November 13, 2009 1:58:33 PM GMT
Data validation is important topic in applications. There are many validation frameworks available and there should be one that you are happy with. I am currently playing with Enterprise Library 4.1 Validation Application Block and I am integrating it to my ASP.NET MVC application. In this posting I will show you how to use validation block in your ASP.NET MVC application. (more)
category: ASP.NET | clicked: 14 | comment | | source: weblogs.asp.net
tags: ASP.NET, enterprise library, MVC, validation
3
votes

Improving ASP.NET: Finding controls - "Peter and the case of the ASP.NET developer"

published 253 days, 22 hours, 13 minutes ago posted by IXWebHostingIXWebHosting 259 days, 2 hours, 41 minutes ago
Wednesday, November 18, 2009 12:09:21 PM GMT Friday, November 13, 2009 7:42:12 AM GMT
This is part of a series of posts offering ideas to improve ASP.NET. I’m not a big fan of the FindControl() method (found on System.Web.UI.Control) for these reasons:To prepare for the search, it needs to build a sorted collection of all controls found in the NamingContainer for which its invoked. Fortunately, this happens once per NamingContainer. Unfortunately, this work has to occur with each page request.... (more)
category: ASP.NET | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET Developer
3
votes

I bet you didn't know that adding custom attributes to your web.sitemap was this easy!

posted by rtpHarryrtpHarry 260 days, 11 hours, 30 minutes ago
Wednesday, November 11, 2009 10:52:21 PM GMT
The site map file is a great place to store extra snippets of page-specific information. In this article we will explore how easy it is to add custom attributes to a site map by creating a user control to display a sitemap and adding custom attributes to filter out specific pages. (more)
category: ASP.NET | clicked: 1 | comment | | source: runtingsproper.blogspot.com
tags: article, ASP.NET, Sitemap, UserControl
Previous 1 2 3 4 5 Next