Sign in
AppDev: Something You Should Know by Irena Kennedy
Everything that is related to application development, and other cool stuff...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
Application Development
Async
Config
Deployment
Environment
RIA
Silverlight
SQL
Telerik
TFS
Tools
Visual Studio
VSTS
WCF
Web
Archive
Archives
September 2012
(2)
March 2012
(1)
January 2012
(2)
April 2011
(1)
March 2011
(2)
October 2010
(1)
September 2010
(1)
August 2010
(2)
December 2009
(4)
November 2009
(1)
September 2009
(1)
June 2009
(2)
April 2009
(1)
December 2008
(2)
February 2008
(1)
October 2007
(3)
September 2007
(1)
August 2007
(7)
July 2007
(5)
June 2007
(8)
May 2007
(19)
April 2007
(42)
March 2007
(43)
February 2007
(33)
January 2007
(21)
December 2006
(7)
November 2006
(20)
October 2006
(22)
September 2006
(20)
August 2006
(23)
July 2006
(19)
June 2006
(12)
May 2006
(22)
April 2006
(20)
March 2006
(23)
February 2006
(20)
January 2006
(21)
December 2005
(14)
November 2005
(19)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
AppDev: Something You Should Know by Irena Kennedy
SYSK 148: Format My Code, Please!
Posted
over 7 years ago
by
irenake
1
Comments
Say you inherit from another developer some poorly formatted asp/html/cs/vb code – no tabbing, too many or not enough space lines… you know, the code that’s just hard to read… What do you do? Just press Ctrl+K+D (or click menu Edit->Advanced->Format...
AppDev: Something You Should Know by Irena Kennedy
SYSK 147: On the Importance of Script Closing Tags
Posted
over 7 years ago
by
irenake
1
Comments
Are the following two lines semantically different? <script language="javascript" type="text/javascript" src="JScript.js"></script> <script language="javascript" type="text/javascript" src="JScript.js" /> As it turns out...
AppDev: Something You Should Know by Irena Kennedy
SYSK 146: SMTP – More Configuration, Less Code
Posted
over 7 years ago
by
irenake
2
Comments
If you’re using SmtpMail class in your projects, you may want to check out a new class in .NET 2.0 -- System.Net.SmtpClient. This class allows you to send messages asynchronously and to receive a notification when the e-mail has been sent. You can...
AppDev: Something You Should Know by Irena Kennedy
SYSK 145: Preventing Configuration Setting Inheritance in Web Apps
Posted
over 7 years ago
by
irenake
2
Comments
If you have a website that contains nested ASP.NET web applications, by default, the settings in the root website’s configuration file inherit downward through all of the ASP.NET applications and subdirectories of the site (see http://msdn2.microsoft...
AppDev: Something You Should Know by Irena Kennedy
SYSK 144: A Faster Way to Get a Total Number of Rows in a Table
Posted
over 7 years ago
by
irenake
8
Comments
How many times you wanted to know the number of rows in a large table before doing some operations, but had to wait for some time till the usual SELECT COUNT(*) FROM <tablename> returns a result? With SQL 2005, there is an alternate...
AppDev: Something You Should Know by Irena Kennedy
SYSK 143: Async Invocation of Stored Procs from SQL
Posted
over 7 years ago
by
irenake
0
Comments
If you need to call a stored proc that may take a while, and you don’t want to block on it, your option is to call it asynchronously. In SQL 2005 you can take advantage of the Service Broker… But if you need to do it from SQL 2000, or you just don’t want...
AppDev: Something You Should Know by Irena Kennedy
SYSK 142: Method Inlining
Posted
over 7 years ago
by
irenake
0
Comments
First, what is it? When you make a method call, there is a lot of work that happens to make it happen -- the registers and parameters get written to the stack just before the function call, then the parameters get read from the stack inside the function...
AppDev: Something You Should Know by Irena Kennedy
SYSK 141: RTFEditor Control
Posted
over 7 years ago
by
irenake
0
Comments
Need a control that encapsulates an RTFTextBox and an editing toolbar? Here it is – see attached. As always, do your own testing… the code is provided as is.
AppDev: Something You Should Know by Irena Kennedy
SYSK 140: Ranking Functions in SQL 2005
Posted
over 7 years ago
by
irenake
0
Comments
Do you know the difference between ROW_NUMBER and RANK functions? What about NTILE? If not, read on… ROW_NUMBER Returns the sequential number of a row within a partition of a result set, starting at 1 for the first row in each partition. The...
AppDev: Something You Should Know by Irena Kennedy
SYSK 139: Multiple Environments Support by a ClickOnce Application
Posted
over 7 years ago
by
irenake
3
Comments
How do you configure an application distributed via ClickOnce technology to treat different environments (e.g. integration, QA, staging, production) as different “versions” and not override each other? In other words, does ClickOnce technology support...
AppDev: Something You Should Know by Irena Kennedy
Will be back June 19th
Posted
over 7 years ago
by
irenake
1
Comments
Folks, I'm going on vacation and will not have Internet access. I will resume publishing the SYSK posts on June 19th.
AppDev: Something You Should Know by Irena Kennedy
SYSK 138: Still Using text, ntext, and image data types? Then this post is for you…
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that SQL 2005 only supports text, ntext, and image data types for backward compatibility purposes? The preferred storage for large data is to use the varchar(max), nvarchar(max), and varbinary(max) data types, where max indicates that the...
Page 1 of 1 (12 items)