Archive for March, 2009

HttpWebRequest & HttpWebResponse

Following example I am trying to explain how we can request to a URL from our coding and read the Header content of the response.
 
Create a web application and add a Textbox and a Button to Default.aspx and double click on the button and add following code.
 
        protected void Button1_Click(object sender, EventArgs e)
        {
            try
            [...]

ASP.NET AJAX and Calendar Control

Normally when we use calendar control in asp.net we see that calendar control occupies lot of space and selecting a date will cause a post back.
To avoid that problem we can use AJAX to select a date from calendar control with out any page post back and hiding the calendar control will save lot of [...]

ASP.NET MVC 1.0 is now Live

ASP.NET is now live and you can download that from http://go.microsoft.com/fwlink/?LinkId=144444 and you can access the documentation from http://go.microsoft.com/fwlink/?LinkId=145989.
 
Tags : ASP.NET MCV, .NET C#, ASP.NET 3.5

External Images in .rdlc Reports : ASP.NET

In this example I will explain how we can use external images in .rdlc reports.Create a Web Application.

Right click on Project in Solution Explorer –> Add New Item – Select a .rdlc Report

Now Drag and Drop a image control in Header section in the Report.rdlc

Go to Report Menu in Visual Studio and Select Report [...]

Microsoft Implementation of Web 2.0 : Kobe

Web 2.0 much discussed term nowadays; what is Web 2.0 lets us first define what Web 1.0 and then come to Web 2.0.
Web 1.0: Normal web applications which provide some information and very minimal user interaction with the application, this is server centric
Web 2.0: A rich Web application which provides more interactions with user, and [...]