43 items found in the ASP.NET 3.5 Category
Highlighting Keywords Found In Search Results
Mikesdotnetting
-
22 May 2010 19:41
A common question in the forums is how to highlight key words found in search results. Here's an extension method that does that, both for partial matches, or whole word matches.
Click to read more about Highlighting Keywords Found In Search Results ...
Filed under:
C#
ASP.NET 3.5
Extension Method
ASP.NET Web Forms
as
Snippet
Viewed: 8748 times
jQuery News Scrollers and Tickers with a ListView
Mikesdotnetting
-
21 May 2010 21:12
The jQuery Cycle plug-in is most often used for creating image slide shows. However, it's just as easy to use to create a news scroller from a ListView. Here, I look a doing just that. I also look at an alternative jQuery plug-in (NewsTicker) that gives the effect of the classic BBC News Ticker.
Click to read more about jQuery News Scrollers and Tickers with a ListView ...
Filed under:
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 15361 times
Displaying The First n Characters Of Text
Mikesdotnetting
-
16 May 2010 09:59
Displaying the first n characters of a block of text on a page without chopping words off halfway through is a common requirement. There are a number of ways to achieve this, but here's an extension method that you might find useful.
Click to read more about Displaying The First n Characters Of Text ...
Filed under:
C#
ASP.NET 3.5
Extension Method
as
Snippet
Viewed: 8414 times
Sessions and Shopping Carts
Mikesdotnetting
-
03 May 2010 23:36
Managing shopping carts using Sessions is the source of much confusion for beginners to ASP.NET. This article looks at how to do this so that items can be added and removed by customers easily before they commit to their purchase.
Click to read more about Sessions and Shopping Carts ...
Filed under:
ASP.NET 3.5
as
Tutorial
Viewed: 36793 times
ASP.NET MVC v. Web Forms Debate - My View
Mikesdotnetting
-
22 February 2010 21:53
It seems that the whole world (and Margate) is having its say on which is better - MVC or Web Forms. Scott Guthrie posted his views on technical debates in general, and then contributed his thoughts on MVC v. Web Forms. Ian Cooper has an interesting contribution to make to the debate too. Rob Conery (formerly of Microsoft) posted probably the most linked to opinion on the matter. (There - I've just added another link...) A lot of other blog posts around scream that MVC is better because its better. One even tries to posit the notion that some kind of score card approach can help you decide.
Click to read more about ASP.NET MVC v. Web Forms Debate - My View ...
Filed under:
General
ASP.NET 3.5
ASP.NET MVC
as
General
Viewed: 29249 times
Using gacutil.exe and Reflection to generate the Exceptions Cheat Sheet
Mikesdotnetting
-
10 February 2010 07:28
The most recent addition to my Cheat Sheets features details of all the Exceptions that can be found in the most commonly used assemblies within ASP.NET development. Compiling this information was an interesting challenge. I could have simply copy-pasted from MSDN, but that would have been extremely tedious. Instead, I ended up with a blend of Linq to XML, Reflection, a dash of Regex and the Global Assembly Cache Tool - gacutil.exe. Here's the full story.
Click to read more about Using gacutil.exe and Reflection to generate the Exceptions Cheat Sheet ...
Filed under:
C#
Visual Studio
General
ASP.NET 3.5
as
Tutorial
Viewed: 5111 times
Cheat Sheet - .NET Framework Exceptions
Mikesdotnetting
-
07 February 2010 17:19
Here's a list of Exceptions that can be found in the assemblies which are most commonly used in ASP.NET development. Ideally, you should be as specific as possible when catching or throwing Exceptions. The more specific you are, the less work the CLR has to do in locating the appropriate catch block, and the more informative your error messages are, which should help speed up identifying the source of any problems.
Click to read more about Cheat Sheet - .NET Framework Exceptions ...
Filed under:
C#
General
ASP.NET 3.5
as
Cheat Sheet
Viewed: 15283 times
Simple task Scheduling using Global.asax
Mikesdotnetting
-
30 January 2010 22:22
A frequent requirement for ASP.NET developers is to schedule tasks at regular intervals. This can include site maintenance tasks, like cleaning up old files, emailing newsletters on a schedule etc. This article examines one easy option for managing tasks like these without having to configure external tools, and discusses a couple of alternatives.
Click to read more about Simple task Scheduling using Global.asax ...
Filed under:
ASP.NET 3.5
as
Tutorial
Viewed: 49161 times
Storing Files and Images in Access with ASP.NET
Mikesdotnetting
-
06 December 2009 19:46
Should you store files and images in the database or the filesystem in an ASP.NET application? With SQL Server this is a dilemma, with both approaches having their pros and cons. When it comes to Access, the decision is much easier to make. Because an Access database is restricted to 2Gb, it makes more sense to store files in the file system. However, sometimes, you may not have the choice. If you have to use the database, here's how.
Click to read more about Storing Files and Images in Access with ASP.NET ...
Filed under:
MS Access
ASP.NET 3.5
ASP.NET Web Forms
as
Tutorial
Viewed: 19678 times
Simple File Download Protection with ASP.NET
Mikesdotnetting
-
25 November 2009 09:09
When it comes to protecting files from unauthorised downloading, the vast majority of articles offer solutions that involve mapping common file types (.pdf, .txt, .doc etc) to ASP.NET within Internet Information Services. However, often in a shared hosting environment, you don't have access to IIS and the hosting company will not agree to providing such mappings for you, so what do you do?
Click to read more about Simple File Download Protection with ASP.NET ...
Filed under:
ASP.NET 3.5
ASP.NET Web Forms
as
Tutorial
Viewed: 52182 times
What ASP.NET Can And Cannot Do
Mikesdotnetting
-
23 November 2009 22:26
If you are new to web development and choose ASP.NET Web Forms as your starting point, you may be forgiven for not understanding how ASP.NET works, and what its role is. This article covers the basics which should help you discover your limits.
Click to read more about What ASP.NET Can And Cannot Do ...
Filed under:
Javascript
General
ASP.NET 3.5
as
Tutorial
Viewed: 11923 times
Book Review - Professional Enterprise .NET
Mikesdotnetting
-
28 October 2009 15:49
I reviewed an ASP.NET Architecture and Design book recently. It was OK. I felt it was a bit thin, and didn't cover topics beyond beginner level. Then I got sent a review copy of another book: Professional Enterprise .NET. Having read it, this is the book that the previous book should want to be when it grows up.
Click to read more about Book Review - Professional Enterprise .NET ...
Filed under:
ASP.NET 3.5
ASP.NET MVC
Book Review
as
General
Viewed: 6540 times
Displaying Google Analytics Data in ASP.NET
Mikesdotnetting
-
26 October 2009 22:30
If you have a Google Analytics account, you can use the Data Export API provided by Google to access your visitor stats, and retrieve them for use elsewhere. Here's how to display some stats in ASP.NET.
Click to read more about Displaying Google Analytics Data in ASP.NET ...
Filed under:
ASP.NET 3.5
ASP.NET MVC
as
Tutorial
Viewed: 50138 times
Book Review - ASP.NET 3.5 Application Architecture and Design
Mikesdotnetting
-
11 October 2009 18:36
Back in the day, when I began to get interested in ASP.NET application architecture and design, I spent hours hunting for a book that would explain all I needed to know. I wanted one that focused on ASP.NET, with its special demands, rather than a general .NET development book. I wanted a book that would explain what layers and tiers were, and how I should separate code out to make it more scalable and reusable. I wanted a book that would explain how I could take my skills to the next level. I couldn't find one. There was a big gap in the market. Vivek Thakur has attempted to fill this gap, with this apty named title: ASP.NET 3.5 Application Architecture and Design.
Click to read more about Book Review - ASP.NET 3.5 Application Architecture and Design ...
Filed under:
General
ASP.NET 3.5
Book Review
as
General
Viewed: 17786 times
Parameterized IN clauses with ADO.NET and LINQ
Mikesdotnetting
-
28 September 2009 21:53
Since my article on using parameters for Preventing SQL Injection In ASP.NET, I have had a few emails asking how to do the same with an IN clause expression. In this entry, I explore a couple of ways to do this.
Click to read more about Parameterized IN clauses with ADO.NET and LINQ ...
Filed under:
C#
ADO.NET
LINQ
ASP.NET 3.5
as
Tutorial
Viewed: 22205 times


