Welcome to Bangladesh Microsoft Technology Community
Sign in
|
Join
|
Help
Shahed Khan (MVP C#)
This Blog
About
May
June 2008
Jul
S
M
T
W
T
F
S
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
Syndication
RSS 2.0
Atom 1.0
Search
Go
Archives
August 2008 (1)
July 2008 (2)
June 2008 (3)
May 2008 (6)
March 2008 (2)
February 2008 (7)
January 2008 (7)
December 2007 (5)
November 2007 (4)
October 2007 (6)
September 2007 (6)
August 2007 (1)
July 2007 (5)
June 2007 (1)
May 2007 (6)
April 2007 (7)
March 2007 (9)
February 2007 (12)
January 2007 (21)
December 2006 (11)
November 2006 (15)
News
I am a Microsoft Certified Application Developer
MCAD Chartered Member (C# .Net)
and born in Bangladesh.
I work for Working Systems Solutions Ltd as a Senior Developer - Analyst.
I am also co-founder and core developer of Pageflakes
www.pageflakes.com
My Articles
Flexible and Plugin based .Net Application..
Mass Emailing Functionality with C#, .NET 2.0, and Microsoft® SQL Server 2005 Service Broker'
Write your own Code Generator or Template Engine in .NET
Navigation
Home
Blogs
Forums
Photos
Files
June 2008 - Posts
Tuesday, June 17, 2008 2:43 PM
ASP.NET tips, Making Custom Validators work in Partial Rendering mode.
IntroductionThere are many situations where we need to identify if partial rendering is supported in a page, especially when a control uses javascript, to get the control work in partial rendering mode, the script needs to be registered using a ScriptManager
posted by
Shahed
|
0 Comments
Wednesday, June 11, 2008 9:21 AM
C# 3.0 tips, Automatic Property
Declaring a property in C# 3.0 is super easy and super short.public class Student{ public string Name { get; set; }}yes that's it, the framework will take care of the rest, the private variables will be automatically created and the getter
posted by
Shahed
|
0 Comments
Tuesday, June 10, 2008 12:25 AM
System.Net.WebClient().DownloadString(url) for Web Scrapeing
WebRequest is the abstract base class for the .NET Framework's request/response model for accessing data from the Internet. To get content of a website, in .NET 1.0. we used to use WebRequest, which is good and also works asynchronously. public static
posted by
Shahed
|
0 Comments