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 249: Choosing the Right Microsoft Integration Technology
Posted
over 7 years ago
by
irenake
6
Comments
SYSK 249: Choosing the Right Microsoft Integration Technology There are a few good sources on this topic, including: 1. “Choosing the Right Technology for Integrating Systems” presentation by Kris Horrocks, Sr. Technical Product Manager of Microsoft...
AppDev: Something You Should Know by Irena Kennedy
SYSK 240: AJAX.NET – Resolution for Sys.ScriptLoadFailedException when Opening Login page
Posted
over 7 years ago
by
irenake
8
Comments
Are you getting Microsoft JScript runtime error: Sys.ScriptLoadFailedException: The script '/YourSiteName/ScriptResource.axd?d=ebUIu-RsatQBXvExgP5y3pvOqX2PbIJ6uav4Avk4QzmounX74siwLINKKPmlFz54oTPVrGJa4XpgCYiosTExfEdJoHleHTQaH7TE19A6Hqg1&t=632986009464531250...
AppDev: Something You Should Know by Irena Kennedy
SYSK 250: How To Start ASP.NET Development Server Without Visual Studio
Posted
over 7 years ago
by
irenake
6
Comments
Since the introduction of the file system based web projects, the developers life has been greatly improved… That is unless you have to do a demo, or have other reasons why you don’t want to run Visual Studio in the background. So, your options are: ...
AppDev: Something You Should Know by Irena Kennedy
SYSK 232: Why Are There Four HTTP GET Requests Retrieving an AJAX Enabled Web Page?
Posted
over 7 years ago
by
irenake
2
Comments
Last weekend, I was playing around with an AJAX.NET application, and I notices that browsing for a simple page like this: <% @ Page Language ="C#" AutoEventWireup ="true" CodeFile ="Default.aspx.cs" Inherits ="_Default" %> < html xmlns...
AppDev: Something You Should Know by Irena Kennedy
SYSK 233: How to Decrypt an ASP.NET Encrypted Data
Posted
over 7 years ago
by
irenake
1
Comments
During debugging and troubleshooting web applications, there are times when you need to decrypt a string that was encrypted by ASP.NET (see my yesterday’s post, http://blogs.msdn.com/irenak/archive/2006/11/02/sysk-232-why-are-there-four-http-get-requests...
AppDev: Something You Should Know by Irena Kennedy
SYSK 239: Header/ContentPlaceholder/Footer Without Hardcoding Header and Footer Height Size
Posted
over 7 years ago
by
irenake
3
Comments
A master page is normally comprised of a header, footer and a content placeholder. Keeping a header at the top is very straight forward to implement; so is keeping the footer at the bottom (just set the position attribute to fixed and bottom attribute...
AppDev: Something You Should Know by Irena Kennedy
SYSK 244: Writing Multi-Processor and Multi-Core Aware Applications with #pragma Directives
Posted
over 7 years ago
by
irenake
3
Comments
Imagine being able to create applications that leverage parallel processing capabilities of computers by simply adding a #pragma directive… Before you get too excited, at this time, this is only available for Visual C++. Yes, there are features...
AppDev: Something You Should Know by Irena Kennedy
SYSK 246: User-Friendly URLs
Posted
over 7 years ago
by
irenake
2
Comments
Did you know that .NET 2.0 and later versions support URL mapping? Say you have a page with several tabs… You can give virtual page name to each tab, but still have all the code implemented in one physical .aspx file. Or, if you have a page that...
AppDev: Something You Should Know by Irena Kennedy
SYSK 243: Stopwatch Undercover
Posted
over 7 years ago
by
irenake
2
Comments
The documentation about System.Diagnostics.Stopwatch class describes it as following: “[Stopwatch] provides a set of methods and properties that you can use to accurately measure elapsed time.” I’ll be the first one to admit that I frequently took...
AppDev: Something You Should Know by Irena Kennedy
SYSK 235: Display .pdf Document Search Results Programmatically
Posted
over 7 years ago
by
irenake
7
Comments
Say, you’ve got a bunch of read-only documents in .pdf format that you allow your web site users to view. And what you’d like to do is to create links that jump to certain sections of the document, but without making any changes to the original document...
AppDev: Something You Should Know by Irena Kennedy
SYSK 247: Generate BizTalk XSD from SQL Server Generated XML
Posted
over 7 years ago
by
irenake
1
Comments
1.) Use the “FOR XML AUTO, ELEMENTS” syntax. You can use joins for any relationships. For Example: SELECT * FROM Table1 ON LEFT OUTER JOIN Table2 ON Table1.pk_id = Table2.fk_id FOR XML AUTO, ELEMENTS 2.) Copy and paste the resulting...
AppDev: Something You Should Know by Irena Kennedy
SYSK 234: WeekDiff = Number of Weeks (full + partial) Between Two Dates
Posted
over 7 years ago
by
irenake
0
Comments
If you need to find out the number of weeks in a month, or the number of weeks between two given dates, and you need to includes partial weeks, not just full weeks as done by the T-SQL datediff(wk, d1, d2) function, then the code snippet below should...
AppDev: Something You Should Know by Irena Kennedy
SYSK 231: Is WinForms Dead? And What Presentation Technology (WinForms, WPF, XAML, WPF/E, AJAX ASP.NET, DirectX) Should You Use and When?
Posted
over 7 years ago
by
irenake
2
Comments
The other day I watched a webcast by Brad Abrams, Group Program Manager for .NET framework, titled “Choosing the right Microsoft presentation technology, a.k.a. Smart Client Roadmap”… Below is a summary of Brad’s recommendations as of late 2006. ...
AppDev: Something You Should Know by Irena Kennedy
SYSK 241: Generate and Download Animated Progress Indicators for Free… Nothing to install!
Posted
over 7 years ago
by
irenake
1
Comments
Here is all that it takes: Navigate to http://www.ajaxload.info/ Choose an indicator type from 27 available options (as of 11/12/2006) Type in the desired background color or click ‘Transparent’ checkbox Enter the foreground color Click...
AppDev: Something You Should Know by Irena Kennedy
SYSK 245: Are You Using the ‘media’ Attribute In Your CSS?
Posted
over 7 years ago
by
irenake
0
Comments
Did you ever copy and paste some content from a web page into a Word document, just so you can remove the navigation column, or may be remove a header or footer before you print it? I have… many times… And it’s all because those web sites do not take...
AppDev: Something You Should Know by Irena Kennedy
SYSK 236: Using SQL Server Notification Services API Remotely
Posted
over 7 years ago
by
irenake
1
Comments
Did you notice that all samples (at least all I’ve come across) show how to use Notification Services interface running locally, i.e. on the SQL Server computer? The code snippet below shows getting a list of subscribers: Microsoft.SqlServer.NotificationServices...
AppDev: Something You Should Know by Irena Kennedy
SYSK 237: What is my Object’s Memory Footprint?
Posted
over 7 years ago
by
irenake
0
Comments
Few days ago I came across the following post published by Chris Brumme back in 2004 at http://www.eggheadcafe.com/community/aspnet/2/9568/here-is-what-chris-brumme.aspx : "We don't expose the managed size of objects because we want to reserve the...
AppDev: Something You Should Know by Irena Kennedy
SYSK 238: Vista… Six SKUs… Which One Is For Me and Which One Is For My Spouse?
Posted
over 7 years ago
by
irenake
2
Comments
Now that Windows Vista is here, it might be a good time to figure out which version is the best fit for you and the other family members. If just want to do the basics: email, web browsing, document creation and editing, and are not interested in...
AppDev: Something You Should Know by Irena Kennedy
SYSK 248: I’m an administrator!!! Why do I get User Account Controls prompts all the time in Vista?
Posted
over 7 years ago
by
irenake
1
Comments
Are you getting a bit frustrated about not being able to do certain things that administrator should be able to do, like run ipconfig /release , and many other commands and tools, and being prompted left and right just so you can say “yes, go ahead and...
AppDev: Something You Should Know by Irena Kennedy
SYSK 242: PDC? TechEd? What about MIX?
Posted
over 7 years ago
by
irenake
2
Comments
Ok, so, probably are not going to be able to go to every professional conference… Which one should you choose? My personal view, formed based on content from previous conferences (read: this is not an official Microsoft statement) is that the PDC...
Page 1 of 1 (20 items)