Monday, June 25, 2007

First Indian Website with microsoft silverlight

I was watching techmela program in CNBC and i found indian companies are also started to develop website with the Microsoft Silver light technology. You all are eager to know that which company is doing this.


Yashraj films has developed site with Microsoft silver light.

here is link for that site.
http://www.yashrajfilms.com/
Share:
Friday, June 22, 2007

Yahoo Stock Quote Ticker with C# and Flash

We all are like to develop our own ticker as we like because we need to customize. I have found great article that not only teach us that how to develop a ticker and how we can consume the asp.net C# web service in flash.

Jason Perry has used yahoo stock quote service to get stock prices. He created the web service that consume the yahoo service and a flash application that consume the .net web service.

This application follows n-tier application design by dividing the application into data, business, and presentation logic. This way a designer can focus on building usable interfaces and leave the structure of the back end to the developers.

here is the link for that article:
http://aspalliance.com/articleViewer.aspx?aId=112&pId=
Share:
Tuesday, June 12, 2007

Micorsoft Server Operating System-Windows Server 2008

Microsoft has announced its new generation of server operating system called windows server 2008. Microsoft windows server 2008 beta 3 is available for download.

Following are the some of windows server 2008 highlights.

1) Increase Control and Manageability
2) Flexibility for Changing Business Needs
3) A Solid Foundation on Which to Build Your Business


For more details about windows sever 2008 family and download beta 3 version of windows server 2008 please visit following link...

http://www.microsoft.com/windowsserver2008/default.mspx
Share:

Introduction to XAML

Microsoft has provided new extensible markup language called XAML(Extensible Application Markup Language ) with .net framework 3.0.

XAML is used to define dynamic or static user interfaces of C# or VB.NET . XAML will be used in Windows Vista to design user interfaces, but can be applied to Windows XP or Windows 2003 as well.

I have found a great articles to describe basics of XAML.This article contains following topics.

1) Background of XAML
2) Advantages of XAML
3) XAML Developer Tools
4) Write First applicaiton with XAML
5) XAML Elements
6) XAML Attributes
7) Generate User Interface pragmatically through XAML

here is the link for that article...
http://aspalliance.com/1019_Introduction_to_XAML
Share:

Using the ASP.NET membership provider in C# Windwos Forms application

ASP.NET 2.0 has great ability to develop application in much more faster and secure way. ASP.NET Membership functionality is one of the example of it. ASP.NET membership functionality is easy to user build whole user management section for you. But still lots of developer does not know that asp.net membership provider can be used in C# windows forms application.

I have found a great article on using asp.net 2.0 membership functionality into C# windows forms application. It can be done without much more effort.

here is the link for that article...
http://www.theproblemsolver.nl/usingthemembershipproviderinwinforms.htm
Share:

Collecting Remote System Information With WMI + C#.NET

While developing a windows application we often need to develop application that will collect information about remote pc. I have found a great article which will use WMI classes in .net framework to get information about remote pc.

here is the link for that article....
http://www.codeproject.com/cs/internet/remotesysinformation.asp?df=100&forumid=127088&exp=0&select=1498523
Share:

Consuming webservice with asp.net ajax

ASP.NET Developer uses Ajax to build great user interfaces. But few developer only know that with asp.net Ajax you can do lost of other things then building great user interfaces. Few developers know you can consume web services with asp.net.

I have found great articles that discuss all things that comes in way to consume web services from Ajax asp.net.

here is the link for that article...
http://www.singingeels.com/Articles/Consuming_Web_Services_With_ASPNET_AJAX.aspx
Share:

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:

Using custom collections with the ASP.NET DataGrid control

Most of the developer use data controls for retrieving data and binding it to the data grid.
But collections in .net technology provide great alternative instead of using data reader,data set or data view to bind data grid.

I have found a great msdn article that describes all thing that you can do with data grid and collections.

i.e. User Interface
Database Structure and collection
Concepts behind the strongly typed collections.
Creating the basic collection objects
Populating the collection with data from the DAL
Binding the Data Grid control to the custom collection
Caching collections
Creating a class to filter collections
Creating a class to sort collections
Bringing it all together: filtering and sorting collections

here is the link for that article:
http://www.microsoft.com/belux/msdn/nl/community/columns/ceulemans/custcollections.mspx
Share:

Search Engine Optimization and ASP.NET

I have found a great articles to do Search engine optimization for ASP.NET websites.

it will discuss regarding view state and meta tags of asp.net .

If you're developing for the Web then you should familiarize yourself with some Search Engine Optimization or SEO concepts. The idea here is to make your ASP.NET application as friendly as possible for spiders, and the specific spider we're talking about is Google.

Here is the link for that :
http://www.wwwcoder.com/tabid/68/type/art/parentid/457/site/6173/default.aspx
Share:

Mouse Hover effect on asp.net datagrid.

Here is the code for mouse hover effect in ASP.NET using C#.

I have written a another code for mouse hover effect in asp.net data gird. You can do both for alternating item and item rows.

First You have to create a item created event of datagrid and paste the following...


private void datagrid_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if (e.Item.ItemType==ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'lightblue';");
e.Item.Attributes.Add("OnMouseOut", "this.style.backgroundColor = '#E5F2FA';");
}
else if(e.Item.ItemType==ListItemType.Item)
{
e.Item.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'lightblue';");
e.Item.Attributes.Add("OnMouseOut", "this.style.backgroundColor = 'white';");
}
}
Share:

Great ASP.NET Datagrid Search Articles.

I have found some great ASP.NET Data grid articles. Please go through it.

1) Drill down Data grid Searching with ASP.NET:

This articles provide all the information to develop basic search in asp.net datagrid.

here is the link:http://www.sitepoint.com/article/datagrid-searching-asp-net

2) Highlighting Multiple Searching Keywords for ASP.NET Datagrid.

This article describes how to highlight searching keyword in asp.net datagrid with the help of
.css files
Share:

ASP.NET Free WebHosting

Hurray, I have found a great free web hosting with ASP.NET 2.0 support. Brinkster People provide free ASP.NET hosting following supports.



  • Package Features.
    30 mb web space
    500 MB WEB TRAFFIC (limited to 16.7 mb web traffic per day)
    1 brinkster.net e-mail account with 10 mb space
    24/7/365 E-MAIL SUPPORT
    Brinkster control panel

  • Supported Technologies.

    ASP 3.0
    ASP.NET
    xml 4.0
    wap enabled
    flash enabled
    ssi - server side includes
    MDAC 2.8
    MS ACCESS
    .NET MOBILE INTERNET TOOLKIT
    ONLINE FILE MANAGER

For more Details please visit :http://www.brinkster.com/hosting/FreeDeveloper.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