<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1312224876906888650</id><updated>2012-02-16T18:13:57.868+05:30</updated><category term='Important .NET Links'/><category term='Top Search Engines'/><title type='text'>Microsoft.NET Software Development Blog</title><subtitle type='html'>Blog for - Software Development in Microsoft.NET Technology</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-935904450857012205</id><published>2009-08-27T11:48:00.009+05:30</published><updated>2009-08-27T12:29:07.746+05:30</updated><title type='text'>Polymorphism in C#</title><content type='html'>&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Introduction&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Polymorphism allows to invoke derived class methods through a base class reference during run-time. This is useful when we need to assign a group of objects to an array and then invoke each of their methods. They won't necessarily have to be the same object type.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Features&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;   1. It has the ability for classes to provide different implementations of methods that are called through the same name.&lt;br /&gt;   2. It allows you to invoke methods of derived class through base class reference during runtime.&lt;br /&gt;&lt;br /&gt;Types of Polymorphism:&lt;br /&gt;&lt;br /&gt;There are 2 types of Polymorphism. They are as follows.&lt;br /&gt;&lt;br /&gt;   &lt;span style="font-weight: bold;"&gt;1. Compile time polymorphism (or) Overloading&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   2. Runtime polymorphism (or) Overriding &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Compile time polymorphism&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Compile time polymorphism is method and operators overloading. It is also called early binding. Method with same name but with different arguments is called method overloading. In method overloading, method performs the different task at the different input parameters.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;class SillyMath&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public static int Plus(int number1, int number2)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;return Plus(number1, number2, 0);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public static int Plus(int number1, int number2, int number3)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;return Plus(number1, number2, number3, 0);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public static int Plus(int number1, int number2, int number3, int number4)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;return number1 + number2 + number3 + number4;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Runtime Time Polymorphism&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Runtime time polymorphism is done using inheritance and virtual functions. Method overriding is called runtime polymorphism. It is also called late binding.Method overriding occurs when child class declares a method that has the same type arguments as a method declared by one of its superclass.&lt;br /&gt;&lt;br /&gt;When overriding a method, you change the behavior of the method for the derived class. Overloading a method simply involves having another method with the same prototype.Method overloading has nothing to do with inheritance or virtual methods.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;namespace MethodOverriding&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;class A&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public virtual void Foo() { Console.WriteLine("A::Foo()"); }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;class B : A&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public override void Foo() { Console.WriteLine("B::Foo()"); }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;class Program&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;static void Main(string[] args)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;A a;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;B b;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;a = new A();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;b = new B();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;a.Foo(); // output --&gt; "A::Foo()"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;b.Foo(); // output --&gt; "B::Foo()"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;a = new B();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;a.Foo(); // output&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Console.ReadLine();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Advantages&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * Polymorphism is one of the features provided by OOP. Polymorphism makes it possible to call different mathods using one interface.&lt;br /&gt;    * A language can implement polymorphism in various forms. First is method overloading and the second is method overridding.This is implemented through *new* keyword in C#.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Disadvantages&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    * It's esoteric. Not very easy for the beginner to just pick up and go with it. Rather it takes often years of dedication before abstraction becomes second nature.&lt;br /&gt;    * Huge up-front hit in migrating legacy code as it often has to re-designed from scratch. Of course in the long run, in terms of re-use, performance and robustness, this eventually becomes an advantage..&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Polymorphism with interfaces&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Polymorphism is posiible with interfaces. A sample program that shows how to achieve polymorphism with interfaces.&lt;br /&gt;&lt;br /&gt;In the Main method the respective overriden CustomerType() method is called.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;interface Customer&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;void CustomerType();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public class CorporateCustomer : Customer&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public void CustomerType()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Console.WriteLine("I am a corporate customer");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public class PersonalCustomer : Customer&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public void CustomerType()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Console.WriteLine("I am a personal customer");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public class MainClass&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public static void Main()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Customer[] C = new Customer[2];&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;C[0] = new CorporateCustomer();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;C[1] = new PersonalCustomer();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;foreach (Customer CustomerObject in C)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;CustomerObject.CustomerType();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Summary:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In this article, we have seen different Polymorphism features in C#.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-935904450857012205?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://deepsoftindia.blogspot.com' title='Polymorphism in C#'/><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/935904450857012205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=935904450857012205&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/935904450857012205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/935904450857012205'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/08/polymorphism-in-c.html' title='Polymorphism in C#'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-194602425541500734</id><published>2009-07-14T09:44:00.002+05:30</published><updated>2009-07-14T09:48:56.105+05:30</updated><title type='text'>Google Developed New OS !</title><content type='html'>See &lt;div&gt;Great News For Every One ! &lt;/div&gt;&lt;div&gt;Google Developed new Operating System Called Chrome OS by Google. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;For All Informations and Snapshots- &lt;a href="http://googlesystem.blogspot.com/"&gt;Click Here&lt;/a&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Regards&lt;/div&gt;&lt;div&gt;Dinesh Verma&lt;/div&gt;&lt;div&gt;&lt;a href="http://internetexpertise.blogspot.com/"&gt;http://internetexpertise.blogspot.com/&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://deepsoftindia.wordpress.com/"&gt;http://deepsoftindia.wordpress.com/&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-194602425541500734?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://internetexpertise.blogspot.com/' title='Google Developed New OS !'/><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/194602425541500734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=194602425541500734&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/194602425541500734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/194602425541500734'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/07/google-developed-new-os.html' title='Google Developed New OS !'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-1954008221237784110</id><published>2009-06-12T16:01:00.003+05:30</published><updated>2009-06-12T16:05:26.057+05:30</updated><title type='text'>Make Contact US Page using  .NET !</title><content type='html'>HI&lt;br /&gt;We can make Contact US page easily using .net / ASP.net coding.&lt;br /&gt;See the Coding part below -&lt;br /&gt;-----------------------------------------------------------------&lt;br /&gt;using System;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Data.SqlClient;&lt;br /&gt;using System.Configuration;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.Security;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using System.Web.UI.WebControls.WebParts;&lt;br /&gt;using System.Web.UI.HtmlControls;&lt;br /&gt;using System.Security.Cryptography;&lt;br /&gt;using System.Xml;&lt;br /&gt;using System.Text;&lt;br /&gt;using System.Net.Mail;&lt;br /&gt;&lt;br /&gt;public partial class _Default : System.Web.UI.Page&lt;br /&gt;{&lt;br /&gt;   protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;&lt;br /&gt;   }&lt;br /&gt;   &lt;br /&gt;   protected void btnSend_Click1(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;    &lt;br /&gt;       bool returnedValue = SendingMail(txtfrom.Text, txttext.Text);&lt;br /&gt;&lt;br /&gt;       if (returnedValue == true)&lt;br /&gt;       {&lt;br /&gt;           StringBuilder sb = new StringBuilder();&lt;br /&gt;           sb.Append("&lt;script language="'javascript'"&gt;");&lt;br /&gt;            sb.Append("alert('your mail has been send, we will contact you soon.   Thank you.');");&lt;br /&gt;            sb.Append("&lt;/script&gt;");&lt;br /&gt;&lt;br /&gt;           Response.Write(sb.ToString());&lt;br /&gt;       }&lt;br /&gt;       else&lt;br /&gt;       {&lt;br /&gt;           txtfrom.Text = "";&lt;br /&gt;           txtfrom.Focus();&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;  private bool SendingMail(string from, string message)&lt;br /&gt;   {&lt;br /&gt;       try&lt;br /&gt;       {&lt;br /&gt;           MailMessage msg = new MailMessage(from, "checkmymail@gmail.com");&lt;br /&gt;           msg.Subject = "Contact Us";&lt;br /&gt;           msg.Body = "Recieved From: " + from + "    Message:   " + message;&lt;br /&gt;           msg.IsBodyHtml = true;&lt;br /&gt;           msg.BodyEncoding = Encoding.UTF32;&lt;br /&gt;           msg.Priority = MailPriority.Normal;&lt;br /&gt;           SmtpClient client;          &lt;br /&gt;           client = new SmtpClient();                                 &lt;br /&gt;           client.Host = "smtp.gmail.com";&lt;br /&gt;           client.Port = 587;&lt;br /&gt;           client.EnableSsl = true;&lt;br /&gt;           client.Credentials = new System.Net.NetworkCredential("checkmymail123@gmail.com", "password");&lt;br /&gt;           client.Send(msg);&lt;br /&gt;&lt;br /&gt;           return true;&lt;br /&gt;       }&lt;br /&gt;       catch&lt;br /&gt;       {&lt;br /&gt;           return false;&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;-----------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can use this code in .NET and able to send the mail using the page desgined in 2 TEXTBOX and 2 LABELS named as above .&lt;br /&gt;See the code&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-1954008221237784110?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/1954008221237784110/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=1954008221237784110&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/1954008221237784110'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/1954008221237784110'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/06/make-contact-us-page-using-net.html' title='Make Contact US Page using  .NET !'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-6626855531284502881</id><published>2009-05-26T15:57:00.003+05:30</published><updated>2009-05-26T16:01:09.920+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Top Search Engines'/><title type='text'>TOP Search Engines of The Internet !</title><content type='html'>These are Top  search Engines over the Internet- &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1) Google.com &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2) Yahoo &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3) MSN/Live&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4) ASK &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;For More Information You can &lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 255);"&gt;&lt;a href="http://www.seoconsultants.com/search-engines/"&gt;click here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-6626855531284502881?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.seoconsultants.com/search-engines/' title='TOP Search Engines of The Internet !'/><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/6626855531284502881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=6626855531284502881&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/6626855531284502881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/6626855531284502881'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/05/top-search-engines-of-internet.html' title='TOP Search Engines of The Internet !'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-4012077074275775923</id><published>2009-05-26T14:59:00.002+05:30</published><updated>2009-05-26T16:01:34.089+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Important .NET Links'/><title type='text'>Most Important Website for .Net Professionals.</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:arial;font-size:13px;"&gt;These are Important website for Dot net&lt;br /&gt;&lt;br /&gt;1) &lt;a href="http://www.certificationking.net/"&gt;www.Certificationking.net&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2) &lt;a href="http://www.asp101.com/"&gt;www.asp101.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3) &lt;a href="http://www.dotnettutorials.com/"&gt;www.dotnettutorials.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4) &lt;a href="http://www.dotnetspider.com/"&gt;www.dotnetspider.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5) &lt;a href="http://www.brainbeez.com/"&gt;www.brainbeez.com &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;6) &lt;a href="http://sharepoint-one-stop-offers.blogspot.com/"&gt;http://sharepoint-one-stop-offers.blogspot.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;7) &lt;a href="http://www.codepedia.com/"&gt;http://www.codepedia.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;8) &lt;a href="http://www.gridviewguy.com/"&gt;http://www.gridviewguy.com&lt;/a&gt;   - For Gridview Concepts&lt;br /&gt;&lt;br /&gt;9)  &lt;a href="http://www.csharphelp.com/index.html"&gt;http://www.csharphelp.com/index.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;10) &lt;a href="http://apex.vtc.com/visual-studio.php"&gt;http://apex.vtc.com/visual-studio.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;11) &lt;a href="http://www.koders.com/"&gt;http://www.koders.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;12)  &lt;a href="http://samples.gaiaware.net/"&gt;http://samples.gaiaware.net/&lt;/a&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;These all of websites are most usefull and important websites. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;Check all of One By One. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;Thanks &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;Dinesh Verma&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;+919896328595&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style=" ;font-family:arial;font-size:13px;"&gt;+919718461838&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-4012077074275775923?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/4012077074275775923/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=4012077074275775923&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/4012077074275775923'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/4012077074275775923'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/05/most-important-website-for-net.html' title='Most Important Website for .Net Professionals.'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1312224876906888650.post-3701247901053929811</id><published>2009-05-20T12:45:00.001+05:30</published><updated>2009-05-20T12:47:07.694+05:30</updated><title type='text'>My Re-Built New Updated Blog....!</title><content type='html'>Hi &lt;div&gt;This is my Updated Blog....&lt;/div&gt;&lt;div&gt;I deleted my previous posts.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Dinesh verma&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1312224876906888650-3701247901053929811?l=deepsoftindia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepsoftindia.blogspot.com/feeds/3701247901053929811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1312224876906888650&amp;postID=3701247901053929811&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/3701247901053929811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1312224876906888650/posts/default/3701247901053929811'/><link rel='alternate' type='text/html' href='http://deepsoftindia.blogspot.com/2009/05/my-re-built-new-updated-blog.html' title='My Re-Built New Updated Blog....!'/><author><name>Microsoft .NET Software Development Blog</name><uri>http://www.blogger.com/profile/13237039547171278740</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_24FimDVMJQU/ShN9UEMsTmI/AAAAAAAAAJk/qRY4xPpnfgI/S220/deepsoft1.jpg'/></author><thr:total>0</thr:total></entry></feed>
