Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

June 2008 - Posts

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

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

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