200 articles this week. Welcome to this week's newsletter from CodeProject. To ensure that future newsletters you receive from The Code Project aren't mistakenly blocked by antispam software, be sure to add the maillist.codeproject.com domain to your list of allowed senders. Thanksgiving with SQL It's Thanksgiving in Canada today so most of the team are currently in various stages of Turkey Coma. We'll rollback into the office sometime tomorrow, thankful for the shorter week. Speaking of spreading the thanks, Red Gate have just published 'Tribal SQL', a book by 15 first-time authors answering the question: What makes you passionate about working with SQL Server? As a truly community-driven book, the authors are all generously donating 100% of their royalties to the charity Computers 4 Africa. If you have a moment check it out at http://TribalSQL.com. ASP.NET Wiki articles now on CodeProject We've taken delivery of over 500 articles from Wiki.ASP.NET. These articles now a new home on in the ASP.NET Wiki section and editing rights for these articles have been set at Bronze or above. Please go in and edit and update these articles to keep them fresh and up to date. cheers, Chris Maunder Advertisements | See the world as a Database Connect to applications, databases, & WebAPIs through standard database interfaces. RSSBus Drivers give a 'SQL-like' interface to data from Salesforce, QuickBooks, Dynamics CRM, SharePoint, SAP, & more. Available for ADO.NET, JDBC, ODBC, SSIS, & BizTalk. Download a Trial! | | Instant access to thousands of books and videos Technology and business professionals can learn with video tutorials, code samples, books, and certification guides. Start a trial now. | | The Best Way to Learn SharePoint – Including 2013! Get up to speed quickly with incredible step-by-step tutorial videos by our industry experts (future releases included at no charge). Optional sample code, hands-on labs & courseware available. Subscribe to LearnDevNow today! | This week's survey: What sort of keyboard are you using? Most popular new articles 7 Oct 2013 - 13 Oct 2013 Latest Additions 200 articles overall. 101 new, 99 updated. New articles added - Sending Asynchronous Mail - ASP.NET Community
public void SendAsyncMail(){ MailMessage mail = new MailMessage(); mail.From = new MailAddress("Enter from mail address"); mail.To.Add(new
- Image Rotator in Javascript - ASP.NET Community
Image Rotator in Javascript There are many ways to create Image Rotator in JavaScript .I write two simple examples to create an Image rotator in
- Simple Captcha Code in Javascript - ASP.NET Community
Here I create a Cptcha Code With JavaScript Step 1:-> In the (.aspx) page we write the following Code:-> <%@ Page Language="C#"
- Quick Error messages with Global.asax - ASP.NET Community
Error pages without any effort void Application_Error(object sender, EventArgs e) {Server.Transfer("/error.aspx"); //Displays the error
- JQuery: A Quick Start Guide - ASP.NET Community
This article is an introduction to JQuery. It is for those people who always heard JQuery but never used it or don't know where to start from.What is
- AJAX - ASP.NET Community
Asynchronous JavaScript and XML - It's Ajax and it's everywhere. Start at the ASP.NET Ajax site and work from there...there's a ton of resources at
- Data Access - ASP.NET Community
There's a lot of great information on the net about accessing data in common data access patterns with ASP.NET 2.0. VideosSQL Server Videos -
- State Management - ASP.NET Community
ASP.NET offers a number of places to store state, both on the client and server. However, sometimes it's difficult to decide where you should put
- Performance - ASP.NET Community
The blogosphere is a wealth of real-world tips and tricks for improving your ASP.NET application's performance.Checklist: ASP.NET Performance
- Configuration - ASP.NET Community
So many aspects of ASP.NET are configurable it can be overwhelming. Things really get interesting when you start adding configuration options for
- HTML - ASP.NET Community
Visual Studio 2008 adds dramatically improved HTML and CSS Designer Support.From ScottGu: "VS 2008 now uses the same web designer that ships with
- Deployment - ASP.NET Community
Deployment continues to get easier, but there's still a few gotchas here and there. Check out these choice articles for you deployment
- Forms Authentication - ASP.NET Community
MSDN How To'sHow To: Create GenericPrincipal Objects with Forms Authentication - This How To shows you how to create and handle GenericPrincipal
- Windows Authentication - ASP.NET Community
From MSDN: "The WindowsAuthenticationModule provider relies on Microsoft Internet Information Services (IIS) to provide authenticated users, using
- Membership and Roles - ASP.NET Community
"ASP.NET Membership builds on the success of the Forms authentication model from ASP.NET 1.x. ASP.NET Forms authentication provides a convenient way
- Code Access Security - ASP.NET Community
Code Access Security is one of the least-understood but most valuable aspects of the .NET Framework.WebcastsMSDN Webcast: Using Code Access
- Communications Security - ASP.NET Community
Traffic on the wire needs to be secured as well. Usually this means SSL, but sometimes it means IPSec or certificates.How ToHow To: Call a Web
- Cryptography - ASP.NET Community
At A large part of security in any web application is keeping your secrets secret. Cryptography makes that
- Authentication and Authorization - ASP.NET Community
Authentication means figuring out who you are and Authorization means figuring out what you can do. Both are fundamental parts of the ASP.NET
- Impersonation and Delegation - ASP.NET Community
Sometimes you'll find it necessary to impersonate the user's identity on a thread with an ASP.NET. You may also need a delegate access the user to
- Input and Data Validation - ASP.NET Community
Garbage in, garbage out. You can avoid data cleanup tasks on the backend by avoiding bad data coming in. ASP.NET validation controls and third party
- SQL Server Security - ASP.NET Community
There's a lot of great information on SQL Server Security covering both SQL Server 2000 and 2005.Blogs/DevCentersSQL Server 2005 Security on
- Threat Modeling - ASP.NET Community
It's absolutely necessary if you're serious about security.Whitepapers/Books/BlogsThreat Modeling for ASP.NET (PDF) - an excellent white
- Security Guidelines and Recommendations - ASP.NET Community
There's a great deal of good prescriptive security guidance out there in the form of whitepapers and books.Whitepaperspatterns & practices
- AJAX Extenders - ASP.NET Community
ASP.NET AJAX can be easily extended to create almost any control you can imagine. Be sure to take a look at the ASP.NET AJAX Control Toolkit.Blog
- Javascript - ASP.NET Community
JavaScript holds it all together on the client side. There are a number of extensions that have been made to improve and expand base JavaScript
- Silverlight - ASP.NET Community
"Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of .NET-based media experiences and rich interactive
- LINQ - ASP.NET Community
From MSDN: "The LINQ Project is a codename for a set of extensions to the .NET Framework that encompass language-integrated query, set, and
- AJAX Control Toolkit - ASP.NET Community
Learn how to extend your ASP.NET AJAX applications using the ASP.NET AJAX Control Toolkit. ASP.NET AJAX Control Toolkit: Installation and getting
- Internationalization - ASP.NET Community
There are three terms around Internationalization that are often used interchangably, however they are distinctions. Here's a good
- AJAX Localization and Globalization - ASP.NET Community
Internationalizing AJAX and JavaScript can be a little trickier than just internationalizing a plan HTML page.Guy Smith-Ferrier on
- Session - ASP.NET Community
ASP.NET Session state provides a place to store values that will persist across page requests. Values stored in Session are stored on the server
- ViewState - ASP.NET Community
ViewState is the mechanism that allows state values to be preserved across page postbacks.Because of the stateless nature of web pages, regular
- Application and Cache - ASP.NET Community
The Cache and Application objects provide broader scope than the Session object and the data is available to all the classes within the ASP.NET
- ASP.NET 3.5 New Controls - ASP.NET Community
Check out the Feature Specifications for Visual Studio 2008 and .NET Framework 3.5. These older documents give you an insight into what features made
- CSS Friendly Pages - ASP.NET Community
From CodePlex: "The CSS Friendly Control Adapters kit (for ASP.Net 2.0) provides pre-built control adapters that you can easily use to generate
Articles updated - Line Counting Trickery within Visual Studio - Rion Williams
This post will cover how to get the number of lines of code within your application in both premium and non-premium versions of Visual Studio through either the integrated Code Metrics tools (Premium-versions only) or by leveraging a crafty Regular Expression and without having to resort to USI.
- RaptorDB - the Document Store - Mehdi Gholam
NoSql, JSON based, Document store database with compiled .net map functions and automatic hybrid bitmap indexing and LINQ query filters (now with standalone Server mode, Backup and Active Restore, Transactions, Server side queries, MonoDroid support, HQ-Branch Replication)
- RaptorDB - The Key Value Store V2 - Mehdi Gholam
Even faster Key/Value store nosql embedded database engine utilizing the new MGIndex data structure with MurMur2 Hashing and WAH Bitmap indexes for duplicates. (with MonoDroid support)
- Virtual 3D-Shopping Malll - Nayan Zawar
application provides a new way of online Shopping by surfing in a virtual mall in which user can would be able to shop online with a new touch experience owing to 3D-clone of user itself
- Edumatter M12: Math Calculators and Equation Solvers - DrABELL
5-in-1 educational software package, including: Fraction Calculator, Prime Factoring, Linear, Quadratic and System of Equation solvers
- Read For Blind - Member 9732818
Intel AIC Finalist for Education/Tablet
- Internals of Windows Thread - Mahesh Bailwal
Basics about Windows thread which may help you in understanding how operating system implements threads.
- Strategy - ASP.NET Community
StrategyThe Strategy design pattern allows you to use multiple algorithms interchangeably. One reason you might use a Strategy Pattern is to
- __doPostBack function - ASP.NET Community
Hi everyone. Today I am going to talk about __doPostBack function, because there is some confusion in using _dopostback.You can see this
- Memento Pattern - ASP.NET Community
The memento design pattern is a pattern that helps to save the object internal state in an external place enabling us to restore the state later when
New Tips and Tricks added - Using UpdateProgress and Making Background Inactive - PoojaGahlaut
To show 'Please wait' text to the user when a button is clicked and some code block needs to be executed. The background should be made disabled, so that user cannot click on other links/buttons before the current execution completes.
Tips and Tricks updated - LINQ to JQuery - meula
Extends Arrays in JavaScript, adding the main domain and filtering functions of LINQ
New Technical Blogs added - Web Forms, MVC, and Web Pages! Oh my! - Rion Williams
In this blog post, I'll review over the three main ASP.NET web development technologies to help broadly cover what each of them do and which one might be best for you to get started with.
- C++ Digraphs - David Corne
The digraphs I am writing about are sequences of characters which act as a stand in for other characters.
- Writing Code Like a CEO - Zac Gery
When too many competing needs arise, seeking guidance on priority is a simple, yet smart decision.
Technical Blogs updated - Creating Advanced Audit Trails using ActionFilters in ASP.NET MVC - Rion Williams
As mentioned in my previous article on “Implementing Simple Audit Trails using ActionFilters in ASP.NET MVC”, accountability is such an important factor when working with systems that involve any level of security and confidentiality. In that post, we discussed creating a very basic [Aud
© 2013 The Code Project. All rights reserved. This email was sent to vutunglampro@gmail.com. To stop receiving The Code Project Insider News click here. CodeProject 503-250 Ferrand Drive, Toronto Ontario, M3C 3G8 Canada +1 416-849-8900 x 100 Please do not reply directly to this email. It was sent from an unattended mailbox. For correspondence please use webmaster@codeproject.com |
Không có nhận xét nào:
Đăng nhận xét