Tuesday, June 12, 2007

ASP.NET AJAX - Things To Know

Ajax is one of the hottest buzz in today's web development world and Google and some other companies have used Ajax very wisely to improve his web applications and services. Every web developer is thinking about ajax. Ajax is a universal technique you can use it with any platform.
Whether it is php,jsp,pearl,javascript,html,coldfusion,asp or asp.net you can use it with all the platforms.

Microsoft has also built Ajax framework called Microsoft Asp.net Ajax formerly know as atlas. ASP.NET Ajax is very easy to user and simple to develop Ajax enabled applications.

I have found a great article which consider things a developer( who is developing Ajax enabled applications ) should know.

here is the link for that article.

http://www.singingeels.com/Articles/ASPNET_AJAX__Things_To_Know.aspx
Share:

Google Corporate Information-History and milestones

I have found a very good articles about Google corporate history and milestone. How the Google was started by Larry Page and Sergy Bin. How the every mile stone are achieved. What help Google to successful like today everything is explained in very good manner and year to year. One must read this to take inspiration from it.

here is the link for that article...

http://www.google.co.uk/corporate/history.html
Share:
Friday, June 8, 2007

How to send email from C# windows application

First find the System.Web.dll in your computer drive where .NET Framework installed

Then add a reference to that dll in your C# windows application.

then write following code to send email....

string smtpServer;
smtpServer= "127.0.0.1";
System.Web.Mail.MailMessage msg = new System.Web.Mail.MailMessage();
msg.From = "From Email Address";
msg.To = "To Email Address";
msg.Body = "Body here";
System.Web.Mail.MailAttachment attachFile = new System.Web.Mail.MailAttachment("Filepath");
System.Web.Mail.SmtpMail.SmtpServer = smtpServer; System.Web.Mail.SmtpMail.Send(msg);
Share:

How to take ScreenShot in C#

To create a screenshot in c# we need to use drawing api of the .net framework

First you have import System.Drawing.Imaging name space with following code...

using System.Drawing.Imaging;

here is the code in C# for screenshot.

int screenWidth = Screen.GetBounds(new Point(0, 0)).Width;
int screenHeight = Screen.GetBounds(new Point(0, 0)).Height;
Bitmap bmpScreenShot = new Bitmap(screenWidth, screenHeight);
Graphics gfx = Graphics.FromImage((Image)bmpScreenShot);
gfx.CopyFromScreen(0, 0, 0, 0, new Size(screenWidth, screenHeight));

bmpScreenShot.Save("test.jpg", ImageFormat.Jpeg);
Share:
Thursday, June 7, 2007

Create a Site Search Engine in ASP.NET - SiteSearch.aspx

I have found a very interesting link to design search engine in asp.net. Which describes the sorting and searching mechanism in result data grid.

following the link of that article.............

http://www.developerfusion.co.uk/show/4389/2/
Share:
Wednesday, June 6, 2007

Micorosft Acropolis CTP 1 released.


Microsoft code name “Acropolis” Community Technology Preview 1 is a bundle of components and tools that make life easier for developers to build and manage modular, business focused, client .NET smart applications.

To Download Acropolis click Here


To Know more about acropolis download Introducing video from here

Share:

Windows Presentation Foundation- All About

The primary goal of Windows Presentation Foundation (WPF) is to help developers create attractive and effective user interfaces. Learn how the WPF unified platform helps make designers active participants in creating user interfaces, and provides a common programming model for standalone and browser applications.

It is a great articles which describes all the aspects of WPF and also give glimpse on how user can developed smart application with Windows Presentation Foundation.

Here is the link for article:
http://msdn2.microsoft.com/en-us/library/aa663364.aspx
Share:

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews