<?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-4185815996627561583</id><updated>2011-11-27T15:41:19.441-08:00</updated><category term='SQL CONNECTION'/><category term='SQL Stored Procedure'/><category term='SQL BACKUP'/><category term='SQL SERVICES'/><category term='IT Hints and Tips'/><category term='EBOOKS'/><category term='SQL Maintenance Plan'/><category term='SQL VIEWS'/><category term='SQL LOGINS'/><category term='CRYSTAL RPT Basic'/><category term='SQL TRANSACTION'/><category term='IIS'/><category term='NHivbernate'/><category term='XNA'/><category term='SQL FUNCTION'/><category term='ASP.net'/><title type='text'>Sharing my .net C# VB ASP SQL XNA knowledge.</title><subtitle type='html'>Sharing knowledge</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-1636395263968928421</id><published>2011-10-05T22:29:00.000-07:00</published><updated>2011-10-05T22:33:00.806-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.net'/><title type='text'>How to which control effect to post back? ASP.net C#</title><content type='html'>How to which control effect to post back?&lt;br /&gt;When we developing web base application we want to know which control effect to post back. In here we can do simple approach to find out control which effect to post back.&lt;br /&gt;&lt;br /&gt;This is the simple method which can be found out the control. In here we have to pass the page as the parameter. In this example I assume that there are few buttons on my web page and I want to know which button force to post back.&lt;br /&gt;&lt;br /&gt;///Method to find out control force to post back.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;public static Control GetPostBackControl(Page page)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        Control control = null;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        string ctrlname = page.Request.Params.Get("__EVENTTARGET");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        if (ctrlname != null &amp;amp;&amp;amp; ctrlname != string.Empty)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;            control = page.FindControl(ctrlname);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        else&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;            foreach (string ctl in page.Request.Form)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;            {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                Control c = page.FindControl(ctl);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                if (c is System.Web.UI.WebControls.Button)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                    control = c;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                    break;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;        return control;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;////&lt;br /&gt;Method call&lt;br /&gt;&lt;span style="color: rgb(255, 153, 102);"&gt;Control _ctlPostback =GetPostBackControl(this.Page);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;By using this one you can do what ever thing according to your requirements.&lt;br /&gt;In here i am use switch case to find out control.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;if (_ctlPostback != null){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                switch(_ctlPostback.ClientID.ToString())&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                    #region&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                    case "ctl00_plcContent__butAddRuletoProduct":///your button Client ID...&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;                        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;     ///YOUR CODE....&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;     break;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;}&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-1636395263968928421?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/1636395263968928421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2011/10/how-to-which-control-effect-to-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/1636395263968928421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/1636395263968928421'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2011/10/how-to-which-control-effect-to-post.html' title='How to which control effect to post back? ASP.net C#'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-2744752349972647226</id><published>2010-05-31T07:47:00.000-07:00</published><updated>2010-05-31T08:06:10.430-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='NHivbernate'/><title type='text'>NHIbernate Simple Windows App</title><content type='html'>During Pass few weeks I tried to understand about NHibernate. Really when I start doing to understand about NHibernate actually I have not any idea about what is NHibernate is? What power which it has? What can we do with it? So on. I knew only there is some things called NHibernate . I searched and find out some articles tutorials related to that. &lt;br /&gt;NHibernate is Object Relation Mapping (ORM).&lt;br /&gt;With help of simple Windows Form Application I will show easily implement NHibernate base Application.&lt;br /&gt;First it is very important to find out required DLL. You can download those from.&lt;br /&gt;&lt;br /&gt;Create Simple Windows Base Application called NHIbernateTestEx1.&lt;br /&gt;Add below DLL to your reference (Simply write click, brows required DLL and add)&lt;br /&gt;&lt;ul&gt;&lt;li&gt; NHibernate.dll&lt;/li&gt;&lt;li&gt; Log4net.dll&lt;/li&gt;&lt;li&gt; NHibernate.ByteCode.LinFu.dll&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Figure 1 show after Add required DLL.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In this Example tutorial I will use Local Database. Next add local database to Application. Simple write click on the NHibernateTestEx1 and add new item local database and give name it to EmployeeDB.mdf&lt;br /&gt;Figure 2 show local DB.&lt;br /&gt;Now it is time to add App.config file to project. Simply add App.config file and write as bellow. It will do simply configuration with NHibernate.&lt;br /&gt;NOTE THAT : you must add your Data base connection string on  &lt;br /&gt;  &lt;br /&gt;&lt;property name="connection.connection_string"&gt;YOUR DATA BASE CONNCTION STRING GOES HERE&lt;br /&gt;&lt;/property&gt;&lt;br /&gt;&lt;br /&gt;Code for  App.config file.&lt;br /&gt;&lt;br /&gt;&lt;configuration&gt;&lt;br /&gt; &lt;configsections&gt;&lt;br /&gt;     &lt;section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"&gt;&lt;br /&gt; &lt;/section&gt;&lt;br /&gt; &lt;hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"&gt;&lt;br /&gt;   &lt;session-factory&gt;&lt;br /&gt;     &lt;property name="dialect"&gt;NHibernate.Dialect.MsSql2005Dialect&lt;/property&gt;&lt;br /&gt;     &lt;property name="connection.provider"&gt;&lt;br /&gt;       NHibernate.Connection.DriverConnectionProvider&lt;br /&gt;     &lt;/property&gt;&lt;br /&gt;     &lt;property name="proxyfactory.factory_class"&gt;&lt;br /&gt;       NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu&lt;br /&gt;     &lt;/property&gt;&lt;br /&gt;     &lt;property name="connection.connection_string"&gt;&lt;br /&gt;       Data Source=.\SQLEXPRESS;AttachDbFilename=G:\MYExperiment\NHIbernateTestEx1\NHIbernateTestEx1\App_Data\EmployeeDB.mdf;Integrated Security=True;User Instance=True&lt;br /&gt;     &lt;/property&gt;&lt;br /&gt;     &lt;property name="show_sql"&gt;false&lt;/property&gt;&lt;br /&gt;     &lt;property name="connection.driver_class"&gt;&lt;br /&gt;       NHibernate.Driver.SqlClientDriver&lt;br /&gt;     &lt;/property&gt;&lt;br /&gt;     &lt;property name="connection.isolation"&gt;ReadCommitted&lt;/property&gt;&lt;br /&gt;     &lt;property name="use_proxy_validator"&gt;true&lt;/property&gt;&lt;br /&gt;     &lt;mapping assembly="KennelFinder"&gt;&lt;br /&gt;   &lt;/mapping&gt;&lt;br /&gt; &lt;/session-factory&gt;&lt;br /&gt;&lt;/hibernate-configuration&gt;&lt;br /&gt;&lt;br /&gt;Next create class call Employee.cs (This class is come from the Database table which we created. It can be any class related to database table)&lt;br /&gt;Employee.cs&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;using System;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;using System.Collections.Generic;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;using System.Text;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;namespace NHIbernateTestEx1&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;    class Employee&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        private int _sEmpId;        &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        private string _sEmpName;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        private string _sEmpAddress;        &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        private string _sEmpContact;        &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        public int EmpId&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            get { return _sEmpId; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            set { _sEmpId = value; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        public string EmpName&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            get { return _sEmpName; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            set { _sEmpName = value; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        public string EmpAddress&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            get { return _sEmpAddress; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            set { _sEmpAddress = value; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        public string EmpContact&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            get { return _sEmpContact; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            set { _sEmpContact = value; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next write the Employee.hbm.xml file for simply mapping process. For that create XML file. And add below code to it.&lt;br /&gt;NOTE THAT: class name should be the class which we created in above step. Employee and it belong to NHIbernateTestEx1 namespace (NHIbernateTestEx1.Employee)&lt;br /&gt;In here id tag is for Primary key of Employee table of Database. And others are the rest of columns.&lt;br /&gt;&lt;br /&gt;&lt;hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" import="true"&gt;&lt;br /&gt; &lt;class name="NHIbernateTestEx1.Employee,NHIbernateTestEx1" lazy="false"&gt;&lt;br /&gt;   &lt;id name="_sEmpId" access="field"&gt;&lt;br /&gt;     &lt;generator class="native"&gt;&lt;br /&gt;   &lt;/generator&gt;&lt;br /&gt;   &lt;property name="_sEmpName" access="field" column="EmpName"&gt;&lt;br /&gt;   &lt;property name="_sEmpAddress" access="field" column="EmpAddress"&gt;&lt;br /&gt;   &lt;property name="_sEmpContact" access="field" column="EmpContact"&gt;&lt;br /&gt; &lt;/property&gt;&lt;br /&gt;&lt;/property&gt;&lt;br /&gt;&lt;br /&gt;Simply create form like below.&lt;br /&gt;&lt;br /&gt;How to create ISession Factory?&lt;br /&gt;Import bellows DLL.&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;using NHibernate;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;using NHibernate.Cfg;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;using System.Reflection;&lt;/span&gt;&lt;br /&gt;And write below OpenSesion() method. And it will return ISession.&lt;br /&gt;#region ISession Factory&lt;br /&gt;       &lt;span style="color: rgb(255, 0, 0);"&gt;public ISessionFactory _iSessionFactory;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        public ISession OpenSession()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            if (_iSessionFactory == null)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                Configuration config = new Configuration();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                config.AddAssembly(Assembly.GetCallingAssembly());&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                _iSessionFactory = config.BuildSessionFactory();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            return _iSessionFactory.OpenSession();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;        }&lt;/span&gt;&lt;br /&gt;       #endregion&lt;br /&gt;Insert Method. In this method get user entered data to text boxes and it will insert into Employee database table with the help of OpenSession() and NHibernate.&lt;br /&gt;#region Insert Data NHIBERNATE&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;public void InsertEmpData()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            Employee emp = new Employee();            &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            emp.EmpName = textBox_EmpName.Text.ToString();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            emp.EmpAddress = textBoxEmpAddress.Text.ToString();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            emp.EmpContact = textBoxEmpContact.Text.ToString();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            using(ISession session=OpenSession())&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                using(ITransaction transaction=session.BeginTransaction())&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                    session.Save(emp);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                    transaction.Commit();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;                }            &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt; }&lt;/span&gt;&lt;br /&gt;#endregion&lt;br /&gt;When Insert Button Click it will call to InsertEmpData() method.&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;private void buttonInsert_Click(object sender, EventArgs e)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;     InsertEmpData();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;}&lt;/span&gt;&lt;/property&gt;&lt;/id&gt;&lt;/class&gt;&lt;/hibernate-mapping&gt;&lt;/configsections&gt;&lt;/configuration&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-2744752349972647226?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/2744752349972647226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2010/05/nhibernate-simple-windows-app.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2744752349972647226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2744752349972647226'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2010/05/nhibernate-simple-windows-app.html' title='NHIbernate Simple Windows App'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-8070907002446038304</id><published>2010-05-19T07:11:00.000-07:00</published><updated>2010-05-19T07:59:20.083-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><title type='text'>IIS Config for ASP web Site</title><content type='html'>IIS Config...&lt;br /&gt;&lt;br /&gt;When we try to browse web sites which published on IIS sometimes it will not be shown in localhost and it will be given some error message by saying try again, XML page can not shown or likewise. Show Figure 1 and 2.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/S_PyKvWUokI/AAAAAAAAA1I/HS7AiSutuCQ/s1600/i1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 250px; height: 320px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/S_PyKvWUokI/AAAAAAAAA1I/HS7AiSutuCQ/s320/i1.JPG" alt="" id="BLOGGER_PHOTO_ID_5472984238507991618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/S_P0AVRmDjI/AAAAAAAAA2Q/hpsjlQmIcjU/s1600/i2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 312px; height: 320px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/S_P0AVRmDjI/AAAAAAAAA2Q/hpsjlQmIcjU/s320/i2.JPG" alt="" id="BLOGGER_PHOTO_ID_5472986258733403698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;Figure 3 shows that the&lt;span style="color: rgb(255, 0, 0);"&gt; Error&lt;/span&gt; Message.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/S_Pzox7VvaI/AAAAAAAAA2I/uWof35FPQA4/s1600/i3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 127px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/S_Pzox7VvaI/AAAAAAAAA2I/uWof35FPQA4/s320/i3.JPG" alt="" id="BLOGGER_PHOTO_ID_5472985854107827618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3&lt;br /&gt;&lt;br /&gt;II&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CGayanS%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CGayanS%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CGayanS%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;TA&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:Latha; 	panose-1:2 11 6 4 2 2 2 2 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-2146435069 0 0 0 1 0;} @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:85.7pt; 	text-align:justify; 	line-height:150%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Latha; 	mso-bidi-theme-font:minor-bidi; 	mso-bidi-language:AR-SA;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Latha; 	mso-bidi-theme-font:minor-bidi; 	mso-bidi-language:AR-SA;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:85.7pt; 	text-align:justify; 	line-height:150%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:85.7pt; 	text-align:justify; 	line-height:150%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="line-height: 150%; font-weight: bold; color: rgb(51, 51, 51);font-family:&amp;quot;;font-size:180%;"  &gt;We can fix that problem simply following below step. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;Step 1:&lt;/span&gt;&lt;/span&gt; Goto&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt; Start----&gt; Run&lt;/span&gt;&lt;br /&gt;and type &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;cmd&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/S_PzUGKJs3I/AAAAAAAAA2A/sLBUqItJFf4/s1600/i4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 171px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/S_PzUGKJs3I/AAAAAAAAA2A/sLBUqItJFf4/s320/i4.JPG" alt="" id="BLOGGER_PHOTO_ID_5472985498761409394" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Step 2:&lt;/span&gt;&lt;/span&gt; now you can we see CMD.&lt;br /&gt;on it goto C:\ (to root by cd.. xxxx)&lt;br /&gt;&lt;br /&gt;And goto &lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;C:\Windows\Microsoft.NET\Framwork\v2.0.50727\aspnet_regiis.exe&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And next should uninstall by typing &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;-u&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;C:\Windows\Microsoft.NET\Framwork\v2.0.50727\aspnet_regiis.exe -U&lt;/span&gt;&lt;br /&gt;Figure 5 show that how to follow 2 step&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/S_PzAoWkATI/AAAAAAAAA14/kDH57yIdyug/s1600/i5.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 162px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/S_PzAoWkATI/AAAAAAAAA14/kDH57yIdyug/s320/i5.JPG" alt="" id="BLOGGER_PHOTO_ID_5472985164342886706" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 5&lt;br /&gt;&lt;br /&gt;After uninstaled it looks like figure 6&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/S_Py6lr6hRI/AAAAAAAAA1w/QxtNtvMTpgc/s1600/i6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 162px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/S_Py6lr6hRI/AAAAAAAAA1w/QxtNtvMTpgc/s320/i6.JPG" alt="" id="BLOGGER_PHOTO_ID_5472985060547921170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 6&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Step 3:&lt;/span&gt;&lt;/span&gt; Now install again&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;C:\Windows\Microsoft.NET\Framwork\v2.0.50727\aspnet_regiis.exe&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And next should uninstall by typing &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;-i&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;C:\Windows\Microsoft.NET\Framwork\v2.0.50727\aspnet_regiis.exe  -i&lt;/span&gt;&lt;br /&gt;Figure 7 show that Step 3&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/S_PyyAJWjPI/AAAAAAAAA1o/F5Am3w9bMmQ/s1600/i7.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 162px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/S_PyyAJWjPI/AAAAAAAAA1o/F5Am3w9bMmQ/s320/i7.JPG" alt="" id="BLOGGER_PHOTO_ID_5472984913031892210" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 7&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Step 4:&lt;/span&gt;&lt;/span&gt; Now follow bellow step.&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;C:\Windows\Microsoft.NET\Framwork\v2.0.50727\aspnet_regiis.exe  -r&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;show figure 8&lt;/span&gt;&lt;/span&gt; and figure 9&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/S_PyluJWFUI/AAAAAAAAA1Y/5sJz0RwTLf4/s1600/i8.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 162px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/S_PyluJWFUI/AAAAAAAAA1Y/5sJz0RwTLf4/s320/i8.JPG" alt="" id="BLOGGER_PHOTO_ID_5472984702041593154" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 8&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/S_Pyd1g5oCI/AAAAAAAAA1Q/weGq9l7nbmQ/s1600/i9.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 162px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/S_Pyd1g5oCI/AAAAAAAAA1Q/weGq9l7nbmQ/s320/i9.JPG" alt="" id="BLOGGER_PHOTO_ID_5472984566580486178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 9&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now error is fixed. now you can browse web site.&lt;br /&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-8070907002446038304?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/8070907002446038304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2010/05/iis-config-for-asp-web-site.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8070907002446038304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8070907002446038304'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2010/05/iis-config-for-asp-web-site.html' title='IIS Config for ASP web Site'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_y_9r687TbhU/S_PyKvWUokI/AAAAAAAAA1I/HS7AiSutuCQ/s72-c/i1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-7427570940538442946</id><published>2009-11-20T09:58:00.000-08:00</published><updated>2009-11-20T10:24:48.491-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IT Hints and Tips'/><title type='text'>How to Activate Kaspersky antivirus Trail Version.</title><content type='html'>Kaspersky Antivirus is a one of the best Antivirus. But it is issue free licence therefor we can use only Kaspersky antivirus trail vision. If we found some licence key related to that it also back listed with short period time. Therefor it is very huge headache for us for who use Kaspersky Antivirus trail version.&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;But there is some solution for that. We can use Kaspersky Antivirus without original licence key.&lt;br /&gt;&lt;br /&gt;Follow below simply step.&lt;br /&gt;&lt;br /&gt;To start step it is import to check whether you have already installed Kaspersky 2009 .  If you already have not install Kasperskey &lt;span style="color: rgb(255, 102, 102);"&gt;download&lt;/span&gt;. And installe.&lt;br /&gt;&lt;br /&gt;&lt;a style="color: rgb(255, 102, 102); font-weight: bold;" href="http://www.mediafire.com/?sharekey=9cf1fd10916b4282d5a101cf914073b4f157a242d7e9bf1a"&gt;http://www.mediafire.com/?sharekey=9cf1fd10916b4282d5a101cf914073b4f157a242d7e9bf1a&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now I assuem you already installed Kasperskey 2009.&lt;br /&gt;&lt;br /&gt;On Kaspsky Icon right click and it will pop up window like Figure 1.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Swbcg5CLPTI/AAAAAAAAAvE/m5VZrY-sUUU/s1600/csharp-villa.blogspot.com-1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 225px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Swbcg5CLPTI/AAAAAAAAAvE/m5VZrY-sUUU/s320/csharp-villa.blogspot.com-1.JPG" alt="" id="BLOGGER_PHOTO_ID_5406250860328729906" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1&lt;br /&gt;&lt;br /&gt;On that select “Setting” now it will pop up window like Figure 2.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SwbctZiOwwI/AAAAAAAAAvM/fhPVE8aHUzo/s1600/csharp-villa.blogspot.com-2JPG.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 293px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SwbctZiOwwI/AAAAAAAAAvM/fhPVE8aHUzo/s320/csharp-villa.blogspot.com-2JPG.JPG" alt="" id="BLOGGER_PHOTO_ID_5406251075211543298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;On that window Goto Option Check Figure 3.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Swbc1n8Eu9I/AAAAAAAAAvU/WEU9U7oLQRw/s1600/csharp-villa.blogspot.com-3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 293px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Swbc1n8Eu9I/AAAAAAAAAvU/WEU9U7oLQRw/s320/csharp-villa.blogspot.com-3.JPG" alt="" id="BLOGGER_PHOTO_ID_5406251216516987858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3&lt;br /&gt;&lt;br /&gt;Now it is very important to uncheck the Self Defence. And Apply changes. Check Figure 4.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/Swbc_ldVeNI/AAAAAAAAAvc/fXWaD_m4vTo/s1600/csharp-villa.blogspot.com-4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 293px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/Swbc_ldVeNI/AAAAAAAAAvc/fXWaD_m4vTo/s320/csharp-villa.blogspot.com-4.JPG" alt="" id="BLOGGER_PHOTO_ID_5406251387649882322" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 4&lt;br /&gt;&lt;br /&gt;Now goto Kaspersky Icon on bar and Rigth click and Exit like Figure 5.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdJKf8egI/AAAAAAAAAvk/T7K_2L_3Uj8/s1600/csharp-villa.blogspot.com-5.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 222px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdJKf8egI/AAAAAAAAAvk/T7K_2L_3Uj8/s320/csharp-villa.blogspot.com-5.JPG" alt="" id="BLOGGER_PHOTO_ID_5406251552211761666" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 5&lt;br /&gt;&lt;br /&gt;Now here after we want application called Kaspersky Trail Reset. If you have not that &lt;span style="color: rgb(255, 102, 102);"&gt;download&lt;/span&gt; that one.&lt;br /&gt;&lt;br /&gt;&lt;a style="color: rgb(255, 102, 102); font-weight: bold;" href="http://www.mediafire.com/?jjnemjxdztj"&gt;http://www.mediafire.com/?jjnemjxdztj&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It contain basically 5 files. According to your PC you can selcet Kaspersky Trail Reseter according to your PC. Figure 6 shows that 5 fills. In here I am use Win32 file. After select trail reseter according to your Pc run it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdULiIfrI/AAAAAAAAAvs/8e2DzKsdduM/s1600/csharp-villa.blogspot.com-6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 202px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdULiIfrI/AAAAAAAAAvs/8e2DzKsdduM/s320/csharp-villa.blogspot.com-6.JPG" alt="" id="BLOGGER_PHOTO_ID_5406251741467934386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 6&lt;br /&gt;&lt;br /&gt;If you have not disable Self-Defense it will pop up window like Figure 7. If you have already disable Self-Defense it will not be poped up. (check Figure 1,2,3 if you not disable Self-Defense  )&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Swbda_9DKEI/AAAAAAAAAv0/gSdY1FQMxiA/s1600/csharp-villa.blogspot.com-7.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 106px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Swbda_9DKEI/AAAAAAAAAv0/gSdY1FQMxiA/s320/csharp-villa.blogspot.com-7.jpg" alt="" id="BLOGGER_PHOTO_ID_5406251858618689602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 7&lt;br /&gt;&lt;br /&gt;After installing success it will be given alert like Figure 8.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdhVHP6cI/AAAAAAAAAv8/-HMNg1DAjV8/s1600/csharp-villa.blogspot.com-8jpg.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 299px; height: 124px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SwbdhVHP6cI/AAAAAAAAAv8/-HMNg1DAjV8/s320/csharp-villa.blogspot.com-8jpg.jpg" alt="" id="BLOGGER_PHOTO_ID_5406251967377828290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 8&lt;br /&gt;&lt;br /&gt;Now your can activate Trial Version using your internet connection. It will be valid 30 days.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SwbdobuK8rI/AAAAAAAAAwE/qZ84cJ1U7WM/s1600/csharp-villa.blogspot.com-9.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 280px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SwbdobuK8rI/AAAAAAAAAwE/qZ84cJ1U7WM/s320/csharp-villa.blogspot.com-9.jpg" alt="" id="BLOGGER_PHOTO_ID_5406252089410777778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 9&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/Swbdu0bJweI/AAAAAAAAAwM/dNUSCz08UBM/s1600/csharp-villa.blogspot.com-10.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 280px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/Swbdu0bJweI/AAAAAAAAAwM/dNUSCz08UBM/s320/csharp-villa.blogspot.com-10.jpg" alt="" id="BLOGGER_PHOTO_ID_5406252199121109474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 10&lt;br /&gt;&lt;br /&gt;After succsing all above step now you can finish process. Check Figure 11.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Swbd1rgYjmI/AAAAAAAAAwU/lw728pdpbKU/s1600/csharp-villa.blogspot.com-11.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 280px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Swbd1rgYjmI/AAAAAAAAAwU/lw728pdpbKU/s320/csharp-villa.blogspot.com-11.jpg" alt="" id="BLOGGER_PHOTO_ID_5406252316986216034" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 11&lt;br /&gt;&lt;br /&gt;Now you have activated Kasperskey for 30 days. And after 30 days you can do same process from step by step can activate again and again.During trail period you can do lot of actions with Kaspersky. It will be huge benefit for users who use Kaspersky trail version.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-7427570940538442946?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/7427570940538442946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/11/how-to-activate-kaspersky-antivirus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7427570940538442946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7427570940538442946'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/11/how-to-activate-kaspersky-antivirus.html' title='How to Activate Kaspersky antivirus Trail Version.'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/Swbcg5CLPTI/AAAAAAAAAvE/m5VZrY-sUUU/s72-c/csharp-villa.blogspot.com-1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-8789075234616463531</id><published>2009-10-31T00:25:00.000-07:00</published><updated>2009-10-31T00:38:33.814-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='XNA'/><title type='text'>CREATE 2D GAME YOURSELF TUTORIAL 1</title><content type='html'>After successfully installing Visual Studio .net and Microsoft XNA Game Studio, we can start to create Window base game or XBOX360 base game our self.&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;All programs-&gt; Microsoft XNA Game Studio&lt;br /&gt;&lt;br /&gt;After open XNA Game studio go to&lt;br /&gt;File-&gt;New-&gt;Project or (ctr+shift+N)&lt;br /&gt;Now it selects XNA Game Studio under Visual C#. And select Windows Game check figure 1.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuvoBUhYYFI/AAAAAAAAAt0/zB-AZ5ss1PI/s1600-h/csharp-villa.blogspot.com-xna1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 220px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuvoBUhYYFI/AAAAAAAAAt0/zB-AZ5ss1PI/s320/csharp-villa.blogspot.com-xna1.JPG" alt="" id="BLOGGER_PHOTO_ID_5398663687719903314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 show that selects Windows Game.&lt;br /&gt;&lt;br /&gt;In here you should provide the name for the game which going to create and should provide the location to save the project after that press OK button.&lt;br /&gt;2nd step:&lt;br /&gt;Now you can see Solution Explorer. Check Figure 2.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuvoOjtSUnI/AAAAAAAAAt8/D8eUSKsSBxc/s1600-h/csharp-villa.blogspot.com-xna2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 285px; height: 298px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuvoOjtSUnI/AAAAAAAAAt8/D8eUSKsSBxc/s320/csharp-villa.blogspot.com-xna2.JPG" alt="" id="BLOGGER_PHOTO_ID_5398663915134669426" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;Now it is better to know about the Game.cs file.  By clicking on that you can see it has basically Five methods already. Now on here we can create game using that already created methods.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1) Initialize()&lt;/span&gt; -(Provide Game initial information)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2) LoadContent()- &lt;/span&gt;(Using that load resource files such as images,videos,sound files,font and so on)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3) UnloadContent()-&lt;/span&gt;(Using that we can unload resource which we load using LoadContent() method)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4) Update(GameTime gameTime) –&lt;/span&gt;(use to update action are goes here)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5) Draw(GameTime gameTime) –&lt;/span&gt; (Use to draw resource which we added)&lt;br /&gt;Now I think you have some idea about how the game create procedure is going.  Let’s check how to add image to our Game project.&lt;br /&gt;How to add image to Game Project&lt;br /&gt;&lt;br /&gt;Before you can start drawing backgrounds, characters, or so on having in your game to the screen, you will need to add these images to your game project. The image types you can add that are supported by the Content Pipeline are .bmp, .jpg, .png and a few texture file formats. Adding the images to your project makes them available to the XNA framework's Content Importer. This will compile them as ".xnb" files when you build your game and make them accessible to the Content Importer in the code for loading and unloading.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd step&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;To add image to game project, Right click on Content and should provide existing items. Check figure 3.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuvoeJFooBI/AAAAAAAAAuE/Hr4BiB2MJwM/s1600-h/csharp-villa.blogspot.com-xna5.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 303px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuvoeJFooBI/AAAAAAAAAuE/Hr4BiB2MJwM/s320/csharp-villa.blogspot.com-xna5.JPG" alt="" id="BLOGGER_PHOTO_ID_5398664182866944018" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3.&lt;br /&gt;&lt;br /&gt;Now you can brows and able to provide image to your game project. After providing image path now you can see the image which you added is added to Content Pipeline. Check Figure 4.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SuvomD7qVCI/AAAAAAAAAuM/_U18qu1aCNo/s1600-h/csharp-villa.blogspot.com-xna6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 259px; height: 159px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SuvomD7qVCI/AAAAAAAAAuM/_U18qu1aCNo/s320/csharp-villa.blogspot.com-xna6.JPG" alt="" id="BLOGGER_PHOTO_ID_5398664318921888802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 4&lt;br /&gt;&lt;br /&gt;Now you have added image. And next go to Game.cs and should provide added images reference. For that should use Texture2D mickymouse2D;&lt;br /&gt;&lt;br /&gt;Next using above added reference we must load that image to our game project for that go to LoadContent() methods and add following line mickymouse2D = Content.Load&lt;texture2d&gt;("&lt;span style="color: rgb(255, 102, 102);"&gt;Mickymouse&lt;/span&gt;"); in here “&lt;span style="color: rgb(255, 102, 102);"&gt;Mickymouse&lt;/span&gt;” is the image name which I alredy added to Content Pipe. Now I have already loaded image to my game. Now my next step is draw that load image on my screen. To do that I must use Draw(GameTime gameTime) method. And add following few line on it.&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;Rectangle mickymouse2DPosition = new Rectangle(100, 100, 100, 100);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;spriteBatch.Begin(SpriteBlendMode.AlphaBlend);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;spriteBatch.Draw(mickymouse2D, mickymouse2DPosition, Color.White);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;spriteBatch.End();&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;base.Draw(gameTime);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d style="color: rgb(102, 102, 102);"&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;in here I provide the position which my image should draw.  Now press play button and you can see the image is drawn on your game screen. Check figure 5.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/Suvou9gM3XI/AAAAAAAAAuU/bagG_hy9-5k/s1600-h/csharp-villa.blogspot.com-xna7.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 251px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/Suvou9gM3XI/AAAAAAAAAuU/bagG_hy9-5k/s320/csharp-villa.blogspot.com-xna7.JPG" alt="" id="BLOGGER_PHOTO_ID_5398664471814921586" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;Figure 5&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;Lets check complete source code.&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using System;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using System.Collections.Generic;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Audio;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Content;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.GamerServices;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Graphics;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Input;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Net;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;using Microsoft.Xna.Framework.Storage;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;namespace MyGame1&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;{&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;   &lt;summary&gt;&lt;/summary&gt;public class Game1 : Microsoft.Xna.Framework.Game&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;   {&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       GraphicsDeviceManager graphics;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       SpriteBatch spriteBatch;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       Texture2D mickymouse2D;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       public Game1()&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       {&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;           graphics = new GraphicsDeviceManager(this);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;           Content.RootDirectory = "Content";&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;     &lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       protected override void Initialize()&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       {           &lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;           base.Initialize();&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt; &lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       protected override void LoadContent()&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;       {           &lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;           spriteBatch = new SpriteBatch(GraphicsDevice);&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;           mickymouse2D = Content.Load&lt;texture2d&gt;("Mickymouse");&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;protected override void UnloadContent()&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       {&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           // TODO: Unload any non ContentManager content here&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       protected override void Update(GameTime gameTime)&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       {           &lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;               this.Exit();         &lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           base.Update(gameTime);&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;   &lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       protected override void Draw(GameTime gameTime)&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       {&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           graphics.GraphicsDevice.Clear(Color.CornflowerBlue);           &lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           Rectangle mickymouse2DPosition = new Rectangle(100, 100, 100, 100);&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           spriteBatch.Begin(SpriteBlendMode.AlphaBlend);&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           spriteBatch.Draw(mickymouse2D, mickymouse2DPosition, Color.White);&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           spriteBatch.End();&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;           base.Draw(gameTime);&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;       }&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;   }&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;}&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;Now you can add image to your games screen.&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;br /&gt;&lt;texture2d&gt;&lt;texture2d&gt;&lt;/texture2d&gt;&lt;/texture2d&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-8789075234616463531?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/8789075234616463531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-2d-game-yourself-tutorial-1.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8789075234616463531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8789075234616463531'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-2d-game-yourself-tutorial-1.html' title='CREATE 2D GAME YOURSELF TUTORIAL 1'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/SuvoBUhYYFI/AAAAAAAAAt0/zB-AZ5ss1PI/s72-c/csharp-villa.blogspot.com-xna1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-4020897026060484236</id><published>2009-10-24T10:52:00.000-07:00</published><updated>2009-10-24T11:20:41.910-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Maintenance Plan'/><title type='text'>Create SQL Maintenance Plan in SQL Server Management Studio (SSMS)</title><content type='html'>&lt;div style="text-align: justify;"&gt;SQL Maintenance Plan plays huge role in SQL Server. Therefore I am going to explain step by step how to create SQL Maintenance Plan.  Using that you can do lots of plan simultaneously.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st Step:&lt;/span&gt;&lt;br /&gt;Flow below path to create SQL Maintenance Plan.&lt;br /&gt;After login to SSMS go to&lt;br /&gt;Management-&gt; Maintenance Plan -&gt; Maintenance Plan Wizard&lt;br /&gt;Figure 1 shows that how to start Maintenance Plan.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuM_GTtrIXI/AAAAAAAAAsM/28EYO0rMdAs/s1600-h/csharp-villa.blogspot.com.m1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 286px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuM_GTtrIXI/AAAAAAAAAsM/28EYO0rMdAs/s320/csharp-villa.blogspot.com.m1.JPG" alt="" id="BLOGGER_PHOTO_ID_5396226156123595122" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It will popup window like Figure 2.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SuM_XAf3CBI/AAAAAAAAAsU/A0brsOEHhdo/s1600-h/csharp-villa.blogspot.com.m2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SuM_XAf3CBI/AAAAAAAAAsU/A0brsOEHhdo/s320/csharp-villa.blogspot.com.m2.JPG" alt="" id="BLOGGER_PHOTO_ID_5396226443023157266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;Figure 2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Press next.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd Step&lt;/span&gt;&lt;br /&gt;After following 1st step it will be pop up window like Figure 3.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SuNAJU5lruI/AAAAAAAAAsc/VqT_Fq2qI4w/s1600-h/csharp-villa.blogspot.com.m3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SuNAJU5lruI/AAAAAAAAAsc/VqT_Fq2qI4w/s320/csharp-villa.blogspot.com.m3.JPG" alt="" id="BLOGGER_PHOTO_ID_5396227307493240546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 3&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In here can provide Name for the Maintenance Plan, description for the Maintenance plans which going to create. It will provide to select Server. And according to that can logging using Windows Authentication or SQL Server Authentication. Press Next button and it will be pop up window like Figure 4.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SuNA8shwciI/AAAAAAAAAsk/xv5F1dQ9l9I/s1600-h/csharp-villa.blogspot.com.m4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SuNA8shwciI/AAAAAAAAAsk/xv5F1dQ9l9I/s320/csharp-villa.blogspot.com.m4.JPG" alt="" id="BLOGGER_PHOTO_ID_5396228190009061922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 4&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd Step&lt;/span&gt;&lt;br /&gt;It asks what the plans are. According to your requirements you can provide plans which want to create. Can be check on check box which wants to create Maintenance Plan. In here I checked some plans (Figure 4) which I want to make Maintenance Plan likewise you can select whatever plans. Click on next button.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4th Step&lt;/span&gt;&lt;br /&gt;After following above step it will be popup new window like Figure 5. Using that window can be move up down selected plans. Click on next button.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuNBk5paIQI/AAAAAAAAAss/6Y7Elk-BJmk/s1600-h/csharp-villa.blogspot.com.m5.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuNBk5paIQI/AAAAAAAAAss/6Y7Elk-BJmk/s320/csharp-villa.blogspot.com.m5.JPG" alt="" id="BLOGGER_PHOTO_ID_5396228880725582082" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 5&lt;/span&gt;&lt;br /&gt;Next it will be popup window like Figure 6. And using that can be provide validity to database it means that what are the data base that create Maintenance Plan belong.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5th Step&lt;/span&gt;&lt;br /&gt;Next according to 2nd step which selected plans one by one SSMS provide window and you can provide database which you want to make plan.&lt;br /&gt;Figure 6 show that According to Check Database Integrity Task.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCH0jKBFI/AAAAAAAAAs0/2qpGAWzpXBg/s1600-h/csharp-villa.blogspot.com.m6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCH0jKBFI/AAAAAAAAAs0/2qpGAWzpXBg/s320/csharp-villa.blogspot.com.m6.JPG" alt="" id="BLOGGER_PHOTO_ID_5396229480652604498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 6&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Figure 7 show that According to Shrink Database Task.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCblhzCAI/AAAAAAAAAs8/sZjXJ9IyxjI/s1600-h/csharp-villa.blogspot.com.m7.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 318px; height: 320px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCblhzCAI/AAAAAAAAAs8/sZjXJ9IyxjI/s320/csharp-villa.blogspot.com.m7.JPG" alt="" id="BLOGGER_PHOTO_ID_5396229820217755650" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 7&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Figure 8 show that According to Rebuild Index Task.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCqyNqSjI/AAAAAAAAAtE/6ZR4sLPj3Pk/s1600-h/csharp-villa.blogspot.com.m8.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuNCqyNqSjI/AAAAAAAAAtE/6ZR4sLPj3Pk/s320/csharp-villa.blogspot.com.m8.JPG" alt="" id="BLOGGER_PHOTO_ID_5396230081320995378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 8&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Figure 9 shows that Update Statistics Task.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SuNC2Ugl-8I/AAAAAAAAAtM/ZEa3Pb1XlRE/s1600-h/csharp-villa.blogspot.com.m9.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 314px; height: 320px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SuNC2Ugl-8I/AAAAAAAAAtM/ZEa3Pb1XlRE/s320/csharp-villa.blogspot.com.m9.JPG" alt="" id="BLOGGER_PHOTO_ID_5396230279505771458" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 9&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Figure 10 shows Cleanup History Task&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuNDLf5_jyI/AAAAAAAAAtU/iQMu8djD2IA/s1600-h/csharp-villa.blogspot.com.m10.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuNDLf5_jyI/AAAAAAAAAtU/iQMu8djD2IA/s320/csharp-villa.blogspot.com.m10.JPG" alt="" id="BLOGGER_PHOTO_ID_5396230643342348066" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 10&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Figure 11 shows that how to create Backup&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuNDm7diXsI/AAAAAAAAAtc/Db4eiC_tc0M/s1600-h/csharp-villa.blogspot.com.m11.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 291px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuNDm7diXsI/AAAAAAAAAtc/Db4eiC_tc0M/s320/csharp-villa.blogspot.com.m11.JPG" alt="" id="BLOGGER_PHOTO_ID_5396231114595655362" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 11&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now all my schedule plans were finish and it will be pop up new window like Figure 12.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuNEAaWnwCI/AAAAAAAAAtk/3FE5mqJizyA/s1600-h/csharp-villa.blogspot.com.m12.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 243px; height: 320px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuNEAaWnwCI/AAAAAAAAAtk/3FE5mqJizyA/s320/csharp-villa.blogspot.com.m12.JPG" alt="" id="BLOGGER_PHOTO_ID_5396231552384876578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 12&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now you can change and create new Job schedule by pressing Change button. And it will be popup window like Figure 13.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuNEJ7iZJ0I/AAAAAAAAAts/pDQcXyTiFOk/s1600-h/csharp-villa.blogspot.com.m15.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 280px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuNEJ7iZJ0I/AAAAAAAAAts/pDQcXyTiFOk/s320/csharp-villa.blogspot.com.m15.JPG" alt="" id="BLOGGER_PHOTO_ID_5396231715911444290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Figure 13&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;By pressing next it will be popup new window and next it will be process and create Maintenance Plan according to your requirements.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&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/4185815996627561583-4020897026060484236?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/4020897026060484236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-sql-maintenance-plan-in-sql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4020897026060484236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4020897026060484236'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-sql-maintenance-plan-in-sql.html' title='Create SQL Maintenance Plan in SQL Server Management Studio (SSMS)'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_y_9r687TbhU/SuM_GTtrIXI/AAAAAAAAAsM/28EYO0rMdAs/s72-c/csharp-villa.blogspot.com.m1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-6749160098040205645</id><published>2009-10-23T11:19:00.000-07:00</published><updated>2009-10-23T11:24:35.035-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL BACKUP'/><title type='text'>HOW TO GET SQL BACK UP</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we dealing with SQL server it is very import to get the SQL Back up because some time we want back up to resort data base if data base corrupt or loosing data.  Basically SQL provide facilities to get back up.&lt;br /&gt;Following below step you can get easily SQL back ups&lt;br /&gt;&lt;br /&gt;Select whatever database which wants to get back up. And right click.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Task--&gt; Back Up…..&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SuHz_eMlBTI/AAAAAAAAAr0/a_LcRVahxaY/s1600-h/csharp-villa.blogspot.com.b1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 287px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SuHz_eMlBTI/AAAAAAAAAr0/a_LcRVahxaY/s320/csharp-villa.blogspot.com.b1.JPG" alt="" id="BLOGGER_PHOTO_ID_5395862100329694514" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 shows that the pop up window.&lt;br /&gt;&lt;br /&gt;1) By drop downing can select back up type. (Full, Differential, Transaction Log).  In here select Full option from Backup combo box.&lt;br /&gt;2) Provide Suitable name and description for backup which are going to take.&lt;br /&gt;3) Back up set Expire. Inhere able to provide particular day or days to expire the backups. It will defend on user requirements.&lt;br /&gt;4) By pressing Add button able to add new store folder to the back. Likewise we can add more physical location for our back up. Like wise we can remove store location by pressing Remove.&lt;br /&gt;&lt;br /&gt;By pressing ok can get SQL backup easily.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SuH0J62xEmI/AAAAAAAAAr8/smQeA52VEwA/s1600-h/csharp-villa.blogspot.com.b2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 237px; height: 133px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SuH0J62xEmI/AAAAAAAAAr8/smQeA52VEwA/s320/csharp-villa.blogspot.com.b2.JPG" alt="" id="BLOGGER_PHOTO_ID_5395862279821529698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2 show that the backup which created.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As well as following above steps we all so can do same process using SQL Query.&lt;br /&gt;Open Query editor&lt;br /&gt;And enter code like below.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;BACKUP DATABASE [Name of Database] TO&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;DISK =N'Backup save path\backupname.bak’&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WITH NOFORMAT, NOINIT,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;NAME =N'DESCRIPTION OF BACK UP',&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SKIP, NOREWIND, NOUNLOAD, STATS=10&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;GO&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;By executing above query can get backup also.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SuH0WVXmCtI/AAAAAAAAAsE/VteLQIZKA-k/s1600-h/csharp-villa.blogspot.com.b4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 221px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SuH0WVXmCtI/AAAAAAAAAsE/VteLQIZKA-k/s320/csharp-villa.blogspot.com.b4.JPG" alt="" id="BLOGGER_PHOTO_ID_5395862493096970962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3 shows that example code.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&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/4185815996627561583-6749160098040205645?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/6749160098040205645/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-get-sql-back-up.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6749160098040205645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6749160098040205645'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-get-sql-back-up.html' title='HOW TO GET SQL BACK UP'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_y_9r687TbhU/SuHz_eMlBTI/AAAAAAAAAr0/a_LcRVahxaY/s72-c/csharp-villa.blogspot.com.b1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-392242084854207659</id><published>2009-10-23T07:54:00.000-07:00</published><updated>2009-10-23T07:57:47.552-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='EBOOKS'/><title type='text'>AJAX</title><content type='html'>----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Beginning Ajax with PHP From Novice to Professional&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;DOWNLOAD LINK: &lt;a href="http://www.sendspace.com/file/s57trz"&gt;Beginning Ajax with PHP&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-392242084854207659?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/392242084854207659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/ajax.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/392242084854207659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/392242084854207659'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/ajax.html' title='AJAX'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-2679442641279640717</id><published>2009-10-23T07:30:00.000-07:00</published><updated>2009-10-23T07:36:50.405-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='EBOOKS'/><title type='text'>C# EBOOKS</title><content type='html'>-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Design Patterns for Searching in C# By Fred Mellender&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;      &lt;span style="font-weight: bold;"&gt;DOWNLOAD LINK&lt;/span&gt; : &lt;a href="http://www.sendspace.com/file/2xmox8"&gt;Design Patterns for Searching in C#&lt;/a&gt;&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-2679442641279640717?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/2679442641279640717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/c-ebooks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2679442641279640717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2679442641279640717'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/c-ebooks.html' title='C# EBOOKS'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-6951542166205237445</id><published>2009-10-17T23:13:00.000-07:00</published><updated>2009-10-17T23:55:19.079-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='CRYSTAL RPT Basic'/><title type='text'>CRYSTAL REPORT BASIC</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we consider about today day today activities, information management plays huge role. It means that data is a one of the resource we have. By managing using proper manner it will be help in many ways to success our day today activities. Therefore people use various types of reports to manage those valuable assets.&lt;br /&gt;As well as, when we consider about software development it also use various types of report as a output of software process.  In here I am going to explain basic ways to generate report using CRYSTAL REPORT using .NET C#.&lt;br /&gt;Actually crystal report is one of very powerful tool we have to generate some report which we want. Using that we can easily manage our data and able to provide very good human interactive report.&lt;br /&gt;In here I am use following Data base which I created. And so on I use that Data base to generate report. Figure 1 shows that Data base diagram which I use to generate Crystal Report so on.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Data Base Name: HGSResourceMgt&lt;br /&gt;Data Base Table : StuDetails, StudentSubject, Subject, TeacherDetails, TeacherSubject&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/StqyXhZcJhI/AAAAAAAAAqM/juQ4BFQ7wPQ/s1600-h/csharp-villa.blogspot.com.c1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 250px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/StqyXhZcJhI/AAAAAAAAAqM/juQ4BFQ7wPQ/s320/csharp-villa.blogspot.com.c1.JPG" alt="" id="BLOGGER_PHOTO_ID_5393819620901398034" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1&lt;br /&gt;&lt;br /&gt;Using .Net IDE basically we can create Crystal report though Windows Application or even Web base Application (ASP.net). In here I am explain how to generate crystal report though Windows Application using.Net C#.  First of all create new project using .net C#.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;To add new crystal report to your project simply follows below step.&lt;br /&gt;Solution Explore r on your project right click AddAdd New Item&lt;br /&gt;After that it will gives a popup window like Figure 2. From that select crystal report and by providing name for that able to add new crystal report to project.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Stq4EB-d-2I/AAAAAAAAArs/ofQMHLEtO3w/s1600-h/csharp-villa.blogspot.com.c11.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 262px; height: 320px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Stq4EB-d-2I/AAAAAAAAArs/ofQMHLEtO3w/s320/csharp-villa.blogspot.com.c11.bmp" alt="" id="BLOGGER_PHOTO_ID_5393825883119024994" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd Step:&lt;/span&gt;&lt;br /&gt;After adding crystal report it will popup new window figure 3 shows that popup window it ask about crystal report type and by selecting crystal report type can create crystal report.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/StqzM7uA8LI/AAAAAAAAAqs/8HI-ClUfOx4/s1600-h/csharp-villa.blogspot.com.c2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 197px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/StqzM7uA8LI/AAAAAAAAAqs/8HI-ClUfOx4/s320/csharp-villa.blogspot.com.c2.JPG" alt="" id="BLOGGER_PHOTO_ID_5393820538500083890" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd Step:&lt;/span&gt;&lt;br /&gt;Next it is very import to provide the database connection details. It means that to generate crystal report definitely we want some  database connection using database we can use data which belong to that to generate Crystal report. Figure 4 show that the new popup window. By using that we can provide SQL or any type of Database connection.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/StqyvGoXsMI/AAAAAAAAAqc/xym0WiidEIs/s1600-h/csharp-villa.blogspot.com.c3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 254px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/StqyvGoXsMI/AAAAAAAAAqc/xym0WiidEIs/s320/csharp-villa.blogspot.com.c3.JPG" alt="" id="BLOGGER_PHOTO_ID_5393820026033123522" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 4&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 5:&lt;/span&gt;&lt;br /&gt;Next it will popup window like Figure 5. And using that window can be providing suitable Database connection to crystal report. In here I provide” Microsoft OLE DB Provider for SQL Server “.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Stqy8LLBKmI/AAAAAAAAAqk/prU3hwd55D8/s1600-h/csharp-villa.blogspot.com.c4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 311px; height: 320px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Stqy8LLBKmI/AAAAAAAAAqk/prU3hwd55D8/s320/csharp-villa.blogspot.com.c4.JPG" alt="" id="BLOGGER_PHOTO_ID_5393820250590489186" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 5&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;6th Step:&lt;/span&gt;&lt;br /&gt;Figure 6 show that popup window by providing SQL Server, UserID, Password and Database which going to create crystal report by using Data.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Stq34lS4tkI/AAAAAAAAArk/qcay87mKpyk/s1600-h/csharp-villa.blogspot.com.c5.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 311px; height: 320px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Stq34lS4tkI/AAAAAAAAArk/qcay87mKpyk/s320/csharp-villa.blogspot.com.c5.JPG" alt="" id="BLOGGER_PHOTO_ID_5393825686441473602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 6&lt;br /&gt;After providing SQL connection detail, it will popup new window like Figure 7. And it will show the SQL Database details which added to crystal report.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/StqzsoAFymI/AAAAAAAAAq8/uvfDk-xJQk0/s1600-h/csharp-villa.blogspot.com.c6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 254px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/StqzsoAFymI/AAAAAAAAAq8/uvfDk-xJQk0/s320/csharp-villa.blogspot.com.c6.JPG" alt="" id="BLOGGER_PHOTO_ID_5393821082963004002" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 7&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 7:&lt;/span&gt;&lt;br /&gt;Now according to your purpose (To create crystal report using Data base) you can select whatever database table which belong o OLE DB(ADO) . By selecting suitable table you can add them to crystal report and here on you can deal with them and generate reports using data from that table which added. Figure 8 shows that how add database table.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/Stq0R9UdXuI/AAAAAAAAArE/UifQaFCI-H8/s1600-h/csharp-villa.blogspot.com.c7.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 254px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/Stq0R9UdXuI/AAAAAAAAArE/UifQaFCI-H8/s320/csharp-villa.blogspot.com.c7.JPG" alt="" id="BLOGGER_PHOTO_ID_5393821724340739810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 8&lt;br /&gt;&lt;br /&gt;After that simply by click on Next button it will popup window like Figure 9 and I will provide basic details which related to that.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Stq27vNskYI/AAAAAAAAArc/UqC5s1VroLc/s1600-h/csharp-villa.blogspot.com.c8.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 254px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Stq27vNskYI/AAAAAAAAArc/UqC5s1VroLc/s320/csharp-villa.blogspot.com.c8.JPG" alt="" id="BLOGGER_PHOTO_ID_5393824641132040578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 9&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;8th Step:&lt;/span&gt;&lt;br /&gt;After finishing above steps now it will create basic crystal report. Figure 10 shows that basic crystal report and basically it has five sections. Each and every section has own task and you can do whatever things using that.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Stq1QhZjNkI/AAAAAAAAArM/gBfnti3cmso/s1600-h/csharp-villa.blogspot.com.c9.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 163px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Stq1QhZjNkI/AAAAAAAAArM/gBfnti3cmso/s320/csharp-villa.blogspot.com.c9.JPG" alt="" id="BLOGGER_PHOTO_ID_5393822799177659970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 10&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-6951542166205237445?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/6951542166205237445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/crystal-report-basic.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6951542166205237445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6951542166205237445'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/crystal-report-basic.html' title='CRYSTAL REPORT BASIC'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/StqyXhZcJhI/AAAAAAAAAqM/juQ4BFQ7wPQ/s72-c/csharp-villa.blogspot.com.c1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-332175413571572820</id><published>2009-10-11T09:37:00.000-07:00</published><updated>2009-10-11T09:50:44.216-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVICES'/><title type='text'>SQL SERVER START/STOP 2</title><content type='html'>&lt;span style="font-weight: bold;"&gt;SQL SERVER START/STOP&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To start, stop or even refresh or so on the SQL Services we can use SQL Server. Follow below steps and you can easily identify how to manage SQL Services.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify; font-weight: bold;"&gt;All Programs -&gt; Microsoft SQL Server 2005 -&gt; Configuration Tool -&gt; SQL Server Configuration Manager&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;By following above steps you can see form like figure 1.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/StIK2r-_RvI/AAAAAAAAApc/nuHMMiri_2E/s1600-h/csharp-villa.blogspot.com.ss1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 142px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/StIK2r-_RvI/AAAAAAAAApc/nuHMMiri_2E/s320/csharp-villa.blogspot.com.ss1.JPG" alt="" id="BLOGGER_PHOTO_ID_5391383638552037106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1&lt;br /&gt;&lt;br /&gt;Basically it gives all the services avaliable currently and provide more information relating to that services.&lt;br /&gt;&lt;br /&gt;By simply right clicking on the services you can easily start,stop,pause,rename,restart each and every services. And also by selecting propertise you can do more thing related to that services. Figure 2. According to Figure 2 the red circle indicate that using that button you can stop services or restart.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/StIKml-FKcI/AAAAAAAAApU/oD3aZ_pK5ls/s1600-h/csharp-villa.blogspot.com.ss2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 141px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/StIKml-FKcI/AAAAAAAAApU/oD3aZ_pK5ls/s320/csharp-villa.blogspot.com.ss2.JPG" alt="" id="BLOGGER_PHOTO_ID_5391383362059708866" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;/div&gt;&lt;div style="text-align: justify;" id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-332175413571572820?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/332175413571572820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-server-startstop-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/332175413571572820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/332175413571572820'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-server-startstop-2.html' title='SQL SERVER START/STOP 2'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_y_9r687TbhU/StIK2r-_RvI/AAAAAAAAApc/nuHMMiri_2E/s72-c/csharp-villa.blogspot.com.ss1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-4323605100914708527</id><published>2009-10-10T22:54:00.000-07:00</published><updated>2009-10-10T23:09:24.294-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVICES'/><title type='text'>SQL SERVICES START/STOP 1</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;SQL SERVICES START/STOP&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It is very important to know about the SQL Services when we are working with SQL. Without knowing about SQL services and its function it will be hard to manage SQL. Therefore first of all I would like to show you how do we get to know about SQL Server.&lt;br /&gt;&lt;br /&gt;Follow thess steps and it will be very easy to know about SQL services.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Go to&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;My Comuper right click -&gt; Manage -&gt; Services And Application -&gt; Services&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After that you can see all the services currently avaliable on your PC. By scrolling also you can find out all the SQL Services currently avaliable on your PC. Check Figure 1.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/StFz40RpiBI/AAAAAAAAApM/hYnlvNuvMl4/s1600-h/csharp-villa.blogspot.com.startstop1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 195px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/StFz40RpiBI/AAAAAAAAApM/hYnlvNuvMl4/s320/csharp-villa.blogspot.com.startstop1.JPG" alt="" id="BLOGGER_PHOTO_ID_5391217648881731602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 shows that all the SQL Services avaliable on my PC.&lt;br /&gt;&lt;br /&gt;Next simply right clicking on that services you can even Start the services which was stopped, Pause, restart and so on. And ever you can refresh the services currently running on your PC. check Figure 2.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/StFzysb8wiI/AAAAAAAAApE/ogAOczho3Js/s1600-h/csharp-villa.blogspot.com.startstop2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 152px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/StFzysb8wiI/AAAAAAAAApE/ogAOczho3Js/s320/csharp-villa.blogspot.com.startstop2.JPG" alt="" id="BLOGGER_PHOTO_ID_5391217543698235938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;By clicking on the Properties on the popup, you can see a form like Figur 3. Using that you can easily can manage your services. It gives that the Service name, discription and the path to execute. And also using that you can set Start  type of each services such as Automatic, Manual or Disabled. As well as by using that you can check about Dependencies of that selected Services.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/StFzoykQE2I/AAAAAAAAAo8/0LhMO8y2_30/s1600-h/csharp-villa.blogspot.com.startstop3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 280px; height: 320px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/StFzoykQE2I/AAAAAAAAAo8/0LhMO8y2_30/s320/csharp-villa.blogspot.com.startstop3.JPG" alt="" id="BLOGGER_PHOTO_ID_5391217373544977250" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-4323605100914708527?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/4323605100914708527/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-services-startstop-1.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4323605100914708527'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4323605100914708527'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-services-startstop-1.html' title='SQL SERVICES START/STOP 1'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_y_9r687TbhU/StFz40RpiBI/AAAAAAAAApM/hYnlvNuvMl4/s72-c/csharp-villa.blogspot.com.startstop1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-8374998816987980505</id><published>2009-10-05T11:14:00.000-07:00</published><updated>2009-10-05T11:22:18.002-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL VIEWS'/><title type='text'>How to create a View using SQL Server Management Studio 2005.</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we dealing with database it is very important to know about the Views of Database it will be help to create suitable SQL Statement and after createing that Views we can esily use them to do some task on our .net C# or VB application. Simply following below step you can create SQL Views.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As a 1st step you must decide what is the database which you are going to create SQL Views. After that you can find number of option avalible with that selected data base. in here you must select View from that. Figure 1 show that Selecting View. By write clicking on that View and selecting New View you can create new view to you data base.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/Sso3yzggpeI/AAAAAAAAAok/X9W1rL2LToQ/s1600-h/csharp-villa.blogspot.views1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 273px; height: 320px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/Sso3yzggpeI/AAAAAAAAAok/X9W1rL2LToQ/s320/csharp-villa.blogspot.views1.JPG" alt="" id="BLOGGER_PHOTO_ID_5389181250061772258" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 shows that how to create SQL View&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After doing 1st step it asks what are the data base table to use to create the SQL Views. In here according to your requirement you can provide suitable data base table for your SQL Views. Figure 2 shows that how to add data base tables to SQL View.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/Sso36MAkoEI/AAAAAAAAAos/i5JPbJaTDrw/s1600-h/csharp-villa.blogspot.views2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 255px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/Sso36MAkoEI/AAAAAAAAAos/i5JPbJaTDrw/s320/csharp-villa.blogspot.views2.JPG" alt="" id="BLOGGER_PHOTO_ID_5389181376897785922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After that I looks like Figure 3. In here you can do what ever SQL Statements with the Data base table which added to the SQL View. And after by providing suitable name for SQL View can create SQL View.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/Sso4DypoNTI/AAAAAAAAAo0/4Zv2aFxfj6g/s1600-h/csharp-villa.blogspot.com.views3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 250px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/Sso4DypoNTI/AAAAAAAAAo0/4Zv2aFxfj6g/s320/csharp-villa.blogspot.com.views3.JPG" alt="" id="BLOGGER_PHOTO_ID_5389181541889357106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3&lt;br /&gt;&lt;br /&gt;By following above three steps esaly can create SQL Views.&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-8374998816987980505?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/8374998816987980505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-create-view-using-sql-server.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8374998816987980505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8374998816987980505'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-create-view-using-sql-server.html' title='How to create a View using SQL Server Management Studio 2005.'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_y_9r687TbhU/Sso3yzggpeI/AAAAAAAAAok/X9W1rL2LToQ/s72-c/csharp-villa.blogspot.views1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-7557945956237683505</id><published>2009-10-05T10:32:00.000-07:00</published><updated>2009-10-05T10:44:58.931-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL LOGINS'/><title type='text'>How to create new user login to SQL Server.</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we install Microsoft SQL Server Management Studio 2005, during instaltion it will asked the password for SA account (Sa is a default login to SQL Server). In that step provide suitable password for default Sa account. After installed the Sql Server.&lt;br /&gt;&lt;br /&gt;You can create user login accoding to your preferences.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;First of all it is must to loged in using SA account. After loged SA account go to Security of that account and it contain login and by write clicking you can add new login. Figure 1 show that how to create new login to SQL Server.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/Ssovei3QYMI/AAAAAAAAAoc/EQXxZAAXIfc/s1600-h/csharp-villa.blogspot.storedprocedurelogin6.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 297px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/Ssovei3QYMI/AAAAAAAAAoc/EQXxZAAXIfc/s320/csharp-villa.blogspot.storedprocedurelogin6.JPG" alt="" id="BLOGGER_PHOTO_ID_5389172105903366338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 show that how to create Logins&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After create logins, in the Genereal Tab of that open form, it ask what is login name, password and what is default data base and so on by providing that information. Figure 2 show that how to add login details.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SsouqQMe-2I/AAAAAAAAAoE/EF1um1Cvfj8/s1600-h/csharp-villa.blogspot.storedprocedurelogin2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 287px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SsouqQMe-2I/AAAAAAAAAoE/EF1um1Cvfj8/s320/csharp-villa.blogspot.storedprocedurelogin2.JPG" alt="" id="BLOGGER_PHOTO_ID_5389171207538932578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2 show that how to add login details&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next in Server Role on Select page click. It provide such a form Figure 3.&lt;br /&gt;In that select sysadmin.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Ssou6OvZ7VI/AAAAAAAAAoM/HsyP3D_PkTg/s1600-h/csharp-villa.blogspot.storedprocedurelogin3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 287px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Ssou6OvZ7VI/AAAAAAAAAoM/HsyP3D_PkTg/s320/csharp-villa.blogspot.storedprocedurelogin3.JPG" alt="" id="BLOGGER_PHOTO_ID_5389171482026437970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3 show Server Role&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4th step:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next select Securables and it gives such a form Figure 4. In that form should select the server which we decide to use to create Logins.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SsovFlrDUGI/AAAAAAAAAoU/-zs6ZmVQyWs/s1600-h/csharp-villa.blogspot.storedprocedurelogin4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 252px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SsovFlrDUGI/AAAAAAAAAoU/-zs6ZmVQyWs/s320/csharp-villa.blogspot.storedprocedurelogin4.JPG" alt="" id="BLOGGER_PHOTO_ID_5389171677160755298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 4 show that how securable handle&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5th step&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next should provide the status of the Logins. Figure 5 show that how to provide Permision to the data base.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SsouPUJy1cI/AAAAAAAAAn8/1ks0SSQO1cA/s1600-h/csharp-villa.blogspot.storedprocedurelogin1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 287px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SsouPUJy1cI/AAAAAAAAAn8/1ks0SSQO1cA/s320/csharp-villa.blogspot.storedprocedurelogin1.JPG" alt="" id="BLOGGER_PHOTO_ID_5389170744744924610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 5&lt;br /&gt;&lt;br /&gt;After following above steps carefully it will be create new logins.&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-7557945956237683505?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/7557945956237683505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-create-new-user-login-to-sql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7557945956237683505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7557945956237683505'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-to-create-new-user-login-to-sql.html' title='How to create new user login to SQL Server.'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/Ssovei3QYMI/AAAAAAAAAoc/EQXxZAAXIfc/s72-c/csharp-villa.blogspot.storedprocedurelogin6.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-2515979062685508936</id><published>2009-10-05T04:19:00.000-07:00</published><updated>2009-10-05T04:55:46.863-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL TRANSACTION'/><title type='text'>SQL TRANSACTION .net C#</title><content type='html'>&lt;div style="text-align: justify;"&gt;It is possible to work with more than one SQL Statement in a time. It means that if we want to insert data to database table as well as update data on database table as well as delete or so on at a same time.  To handle such situation SQL Transaction will be helped to do work with more than one SQL Statement at a time.  Using SQL Transaction it is very easy to work with multiple SQL Statements.  When implement some SQL Transaction it check all SQL Statements execute perfectly it means that Committed or otherwise it will be rollback no SQL Statements execute.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Following below step easy to create SQL Transaction&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Create SQL Connection and SQL Data Reader object&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SqlConnection conn =new SqlConnection(“SQL CONNCTION STRING IS GOING HERE”);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SqlDataReader rdr  = null;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Open SQL Connection&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Conn.open()&lt;/span&gt;&lt;br /&gt;Begging SQL transaction&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SqlTransaction dbTrans = dbConnection.BeginTransaction();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;//Set Transaction object to Sqlcommand&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;SqlCommand dbCmd = dbConnection.CreateCommand();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;     dbCmd.Transaction = dbTrans;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; //SQL STATEMENT GOES HERE YOU CAN ADD ANY NUMBER OF SQL STATEMNET&lt;br /&gt;          &lt;br /&gt; //IF SQL STATEMENT EXECUTE Transction will be Commit&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;dbTrans.Commit();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch (Exception qe)&lt;br /&gt;{&lt;br /&gt; //IF ANY error occure Transaction will be rollback&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;dbTrans.Rollback();&lt;/span&gt;&lt;br /&gt;}&lt;br /&gt;finally&lt;br /&gt;{&lt;br /&gt;//Close Database Connection&lt;br /&gt;        &lt;span style="font-weight: bold;"&gt;Conn.close();     &lt;/span&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-2515979062685508936?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/2515979062685508936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-transaction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2515979062685508936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/2515979062685508936'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-transaction.html' title='SQL TRANSACTION .net C#'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-1764975797093014316</id><published>2009-10-05T02:06:00.000-07:00</published><updated>2009-10-05T02:24:41.138-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Stored Procedure'/><title type='text'>Sending Parameters to Stored Procedures</title><content type='html'>&lt;div style="text-align: justify;"&gt;Using parameters for stored procedures is the same as using parameters for query string commands.  The following code shows this:&lt;br /&gt;&lt;br /&gt; // 1.  create a command object identifying&lt;br /&gt; //     the stored procedure&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;SqlCommand cmd  = new SqlCommand(&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;  "CustOrderHist", conn);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; // 2. set the command object so it knows&lt;br /&gt; //    to execute a stored procedure&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;cmd.CommandType = CommandType.StoredProcedure;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; // 3. add parameter to command, which&lt;br /&gt; //    will be passed to the stored procedure&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;cmd.Parameters.Add(&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;  new SqlParameter("@CustomerID", custId));&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1st and 2nd steps are use to &lt;a href="http://csharp-villa.blogspot.com/2009/10/executing-stored-procedure.html"&gt;execute stored procedure&lt;/a&gt;. And 3rd step is use to provide the suitable parameter according to the stored procedure.&lt;br /&gt;In here we can add Parameters. For that use c&lt;span style="font-weight: bold;"&gt;md.Parameters.Add(new SqlParameter(“@param”,xxxx)). &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;According to above example I have mention above @Variable take single parameter.  And we  can parse value to that parameter according to our requirement.&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&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/4185815996627561583-1764975797093014316?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/1764975797093014316/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sending-parameters-to-stored-procedures.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/1764975797093014316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/1764975797093014316'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sending-parameters-to-stored-procedures.html' title='Sending Parameters to Stored Procedures'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-8725656606843583939</id><published>2009-10-05T01:31:00.001-07:00</published><updated>2009-10-05T02:25:32.658-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Stored Procedure'/><title type='text'>Executing a Stored Procedure</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we consider about the SqlCommand type it has basically &lt;span style="font-weight: bold;"&gt;Stored Procedure, Table Direct and Text&lt;/span&gt;.  Therefore we can easily provide the &lt;span style="font-weight: bold;"&gt;SqlCommand type&lt;/span&gt; as a Stored Procedure.  And can be used to execute it.  To success that basically it should require two tasks.&lt;br /&gt;&lt;br /&gt;• SqlCommand object should know which Stored Procedure to Execute.&lt;br /&gt;• SqlCommand object that it is executing a stored procedure&lt;br /&gt;&lt;br /&gt;These two steps are shown below.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;// 1.  create a command object identifying&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt; //     the stored procedure&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SqlCommand cmd  = new SqlCommand(&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;  "&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;Name of Stored Procedure to Execute&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;",&lt;/span&gt;&lt;span style="color: rgb(255, 204, 51); font-weight: bold;"&gt; &lt;span style="color: rgb(51, 51, 51);"&gt;conn&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;// 2. set the command object so it knows&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt; //    to execute a stored procedure&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cmd.CommandType = CommandType.StoredProcedure;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;According to that SqlCommand object have two parameter first one is the Name of the Stored Procedure which you are going to execute. And next parameter is the data base connection.&lt;br /&gt;&lt;br /&gt;As second step it shows that it selected command type property as a Stored Procedure it is very important. Otherwise it will not be work properly according to our purpose.&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-8725656606843583939?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/8725656606843583939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/executing-stored-procedure.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8725656606843583939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8725656606843583939'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/executing-stored-procedure.html' title='Executing a Stored Procedure'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-3298287431264692348</id><published>2009-10-05T01:31:00.000-07:00</published><updated>2009-10-05T02:25:54.835-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Stored Procedure'/><title type='text'>Create Stored Procedure Using MS SQL Mgt Studio</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Stored procedure&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; Introduction&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;When we consider about the SQL Stored Procedure basically it is a one of the powerful characteristic which SQL Server exits. Basically Stored Procedure has following characteristic.&lt;br /&gt;&lt;br /&gt;• Pre- Defined&lt;br /&gt;• Reusable routine that is stored in a DB&lt;br /&gt;• Efficient&lt;br /&gt;• Dynamically building queries&lt;br /&gt;• Parameter support&lt;br /&gt;&lt;br /&gt;Create Stored Procedure Using &lt;span style="font-weight: bold;"&gt;Microsoft SQL Server Management Studio&lt;/span&gt;.&lt;br /&gt;As a first step it is very important to select the database which you want to create Stored Procedure. And next select the Programmability in there select Stored Procedure. Write click on Stored Procedure and by giving suitable name for Stored Procedure you can create Stored Procedure. Figure 1 show how to create Stored Procedure.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SsmvjVOUT0I/AAAAAAAAAnk/qZmyMwqWrAE/s1600-h/csharp-villa.blogspot.storedprocedureCre1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 270px; height: 320px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SsmvjVOUT0I/AAAAAAAAAnk/qZmyMwqWrAE/s320/csharp-villa.blogspot.storedprocedureCre1.JPG" alt="" id="BLOGGER_PHOTO_ID_5389031450652987202" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1: How to create Stored Procedures for particular Database.&lt;br /&gt;&lt;br /&gt;When you create stored procedure you can find file as Figure 2. According to your purpose you can create suitable stored procedure by adding necessary code on that Stored Procedure file and you can save them. After that easily can use to our application.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_y_9r687TbhU/SsmvsijrCKI/AAAAAAAAAns/VHjBTRaVPEg/s1600-h/csharp-villa.blogspot.storedprocedureCre2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 197px;" src="http://1.bp.blogspot.com/_y_9r687TbhU/SsmvsijrCKI/AAAAAAAAAns/VHjBTRaVPEg/s320/csharp-villa.blogspot.storedprocedureCre2.JPG" alt="" id="BLOGGER_PHOTO_ID_5389031608851040418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2 show that Stored Procedure File.&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;br /&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/4185815996627561583-3298287431264692348?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/3298287431264692348/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-stored-procedure-using-ms-sql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/3298287431264692348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/3298287431264692348'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-stored-procedure-using-ms-sql.html' title='Create Stored Procedure Using MS SQL Mgt Studio'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_y_9r687TbhU/SsmvjVOUT0I/AAAAAAAAAnk/qZmyMwqWrAE/s72-c/csharp-villa.blogspot.storedprocedureCre1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-4874636888337604428</id><published>2009-10-04T22:46:00.003-07:00</published><updated>2009-10-05T02:26:11.715-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Stored Procedure'/><title type='text'>CREATE STORED PROCEDURES USING .NET IDE</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;CREATE STORED PROCEDURES USING .NET IDE&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We can create stored procedures using modern IDE such as Visual Studio .Net and using some languets such as C#, VB and etc.  As well as, we can easily manage stored procedures through that one.  By following below simple step it will be very easy to create stored procedure without using Microsoft SQL management studio.  In here I am going to explain how to create a SQL Server Project using .net C#.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;Create the Data base project. Follow step.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;File-&gt;New-&gt;Project-&gt;Database&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;By providing necessary details can create Database project. Figure 1 how to create database project.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SsmkYuQVlAI/AAAAAAAAAnE/0ELc9ZVFOik/s1600-h/csharp-villa.blogspot.storedprocedure1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 220px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SsmkYuQVlAI/AAAAAAAAAnE/0ELc9ZVFOik/s320/csharp-villa.blogspot.storedprocedure1.JPG" alt="" id="BLOGGER_PHOTO_ID_5389019173765878786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 show that how to create a SQL Server Project.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd step:&lt;/span&gt;&lt;br /&gt;Adding a database reference&lt;br /&gt;&lt;br /&gt;Now it will ask for a database reference.  In here you can add new data base reference or can use existing data base references. Figure 2 explain that how to add data base reference for SQL Server Project.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Ssmkm1RPL6I/AAAAAAAAAnM/pphwcrV3KYc/s1600-h/csharp-villa.blogspot.storedprocedure2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 300px; height: 320px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Ssmkm1RPL6I/AAAAAAAAAnM/pphwcrV3KYc/s320/csharp-villa.blogspot.storedprocedure2.JPG" alt="" id="BLOGGER_PHOTO_ID_5389019416166870946" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2 show: can use existing Db reference or Add New Reference&lt;br /&gt;&lt;br /&gt;Figure 3 show how to add new Database Reference to SQL Database Project.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/SsmkugUAtuI/AAAAAAAAAnU/Ppmx7pRsw20/s1600-h/csharp-villa.blogspot.storedprocedure3.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 213px; height: 320px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/SsmkugUAtuI/AAAAAAAAAnU/Ppmx7pRsw20/s320/csharp-villa.blogspot.storedprocedure3.JPG" alt="" id="BLOGGER_PHOTO_ID_5389019547980314338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 3 show how to create new database reference by adding necessary details.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd step:&lt;/span&gt;&lt;br /&gt;Adding a Stored Procedure to SQL Database project&lt;br /&gt;&lt;br /&gt;Write click on the Project and add a stored procedure. By adding stored procedure you can create whatever stored procedure you want. Normally there are few templates available from that template select stored procedure template. Figure 4 introduce how to add new stored procedure file to project.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_y_9r687TbhU/Ssmk34Kb1xI/AAAAAAAAAnc/S2Sj0qSHgBU/s1600-h/csharp-villa.blogspot.storedprocedure4.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 197px;" src="http://2.bp.blogspot.com/_y_9r687TbhU/Ssmk34Kb1xI/AAAAAAAAAnc/S2Sj0qSHgBU/s320/csharp-villa.blogspot.storedprocedure4.JPG" alt="" id="BLOGGER_PHOTO_ID_5389019709001422610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 4 show that adding new stored procedure to SQL Database project.&lt;br /&gt;&lt;br /&gt;Now I have already created stored procedure on my SQL Database project. Open stored procedure file. It will be simply like this.&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.Data.SqlTypes;&lt;br /&gt;using Microsoft.SqlServer.Server;&lt;br /&gt;&lt;br /&gt;public partial class StoredProcedures&lt;br /&gt;{&lt;br /&gt;         [Microsoft.SqlServer.Server.SqlProcedure]&lt;br /&gt;         public static void TestStoredProcedure()&lt;br /&gt;         {&lt;br /&gt;                     // Put your code here&lt;br /&gt;           }&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4th step&lt;/span&gt;&lt;br /&gt;Now in the method we have to add suitable SQL query and able to create simple Stored procedure. By adding following codes to that methods. Make SqlPipe object and SqlCommand object.&lt;br /&gt;&lt;br /&gt;Important: The function from stored procedure want to perform should enter as SQL query. Stored procedure works according to the SQL query we are placing here. Therefore we must identify SQL query is working correctly otherwise Stored Procedure will not be working correctly according to our requirements.&lt;br /&gt;&lt;br /&gt;public static void TestStoredProcedure()&lt;br /&gt;{&lt;br /&gt;          // Put your code here&lt;br /&gt;          SqlPipe sqlPipe;&lt;br /&gt;          SqlCommand sCmd = new SqlCommand();&lt;br /&gt;          sCmd.CommandText = "&lt;span style="color: rgb(51, 255, 51);"&gt;&lt;span style="color: rgb(255, 102, 102);"&gt;SELECT Name FROM NameOfStudent&lt;/span&gt;&lt;/span&gt;";&lt;br /&gt;          sqlPipe = SqlContext.Pipe;&lt;br /&gt;          sqlPipe.ExecuteAndSend(sCmd);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5th step:&lt;/span&gt;&lt;br /&gt;Deploy the Stored Procedure&lt;br /&gt;&lt;br /&gt;Build the project and then deploy it.&lt;br /&gt;Run the Stored Procedure&lt;br /&gt;Make sure the CLR is enabled with your SQL Server by running the following SQL.&lt;br /&gt;&lt;br /&gt;sp_configure 'clr enabled', 1;&lt;br /&gt;GO&lt;br /&gt;RECONFIGURE;&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-4874636888337604428?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/4874636888337604428/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-stored-procedures-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4874636888337604428'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/4874636888337604428'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/create-stored-procedures-using.html' title='CREATE STORED PROCEDURES USING .NET IDE'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/SsmkYuQVlAI/AAAAAAAAAnE/0ELc9ZVFOik/s72-c/csharp-villa.blogspot.storedprocedure1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-7689131198213472584</id><published>2009-10-04T22:46:00.002-07:00</published><updated>2009-10-04T22:47:36.489-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL FUNCTION'/><title type='text'>SQL Mathematics Function</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;SQL Mathematics Function&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Basically SQL mathematics function provider idea about mathematic function.  By using those function can do same mathematics calculation easily.&lt;br /&gt;&lt;br /&gt;• SQL ABS Function&lt;br /&gt;• SQL Cell (or Ceiling ) and Floor Function&lt;br /&gt;• SQL Power Function&lt;br /&gt;• SQL Rand Function&lt;br /&gt;• SQL Round Function&lt;br /&gt;• SQL SQRT Function&lt;br /&gt;• SQL PI Function&lt;br /&gt;• SQL Exp Function&lt;br /&gt;• SQL Log Function&lt;br /&gt;• SQL Trigonometric Function&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/4185815996627561583-7689131198213472584?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/7689131198213472584/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-mathematics-function.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7689131198213472584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/7689131198213472584'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-mathematics-function.html' title='SQL Mathematics Function'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-3895559019351525680</id><published>2009-10-04T22:46:00.001-07:00</published><updated>2009-10-04T22:46:53.325-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL FUNCTION'/><title type='text'>SQL String Function</title><content type='html'>&lt;span style="font-weight: bold;"&gt;SQL String Function&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Basically SQL String Function allows you to manipulate character data effectively.&lt;br /&gt;&lt;br /&gt;• SQL ASCII Function&lt;br /&gt;• SQL CHR or CHAR Function&lt;br /&gt;• SQL CONCAT Function&lt;br /&gt;• SQL LENGTH or LEN Function&lt;br /&gt;• SQL Replace Function&lt;br /&gt;• SQL Lower Function&lt;br /&gt;• SQL Upper Function&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-3895559019351525680?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/3895559019351525680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-string-function.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/3895559019351525680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/3895559019351525680'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-string-function.html' title='SQL String Function'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-5774403986575758023</id><published>2009-10-04T22:44:00.000-07:00</published><updated>2009-10-04T22:46:04.598-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL FUNCTION'/><title type='text'>SQL Aggregate Function</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;SQL Aggregate Function&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Basically SQL Aggregate Function allows you to summarize the result of an expression for the group of rows and returns a single value for that group.&lt;br /&gt;&lt;br /&gt;• SQL AVG Function&lt;br /&gt;• SQL Count Function&lt;br /&gt;• SQL MAX/ MIN Function&lt;br /&gt;• SQL Sum Function&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/4185815996627561583-5774403986575758023?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/5774403986575758023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-aggregate-function.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/5774403986575758023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/5774403986575758023'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-aggregate-function.html' title='SQL Aggregate Function'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-6956340214614170002</id><published>2009-10-04T22:20:00.001-07:00</published><updated>2009-10-04T22:58:35.052-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL FUNCTION'/><title type='text'>SQL Function Introduction</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;SQL FUNCTION&lt;/span&gt;&lt;br /&gt;When we consider about the SQL FUNCTION we can identify three types of SQL functions such as SQL Aggregate Function, SQL String Function, and SQL Mathematic Function. By using those functions you can easily SQL query according to your requirements.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://csharp-villa.blogspot.com/2009/10/sql-aggregate-function.html"&gt;&lt;span style="font-weight: bold;"&gt;SQL Aggregate Function&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Basically SQL Aggregate Function allows you to summarize the result of an expression for the group of rows and returns a single value for that group.&lt;br /&gt;&lt;br /&gt;• SQL AVG Function&lt;br /&gt;• SQL Count Function&lt;br /&gt;• SQL MAX/ MIN Function&lt;br /&gt;• SQL Sum Function&lt;br /&gt;&lt;a href="http://csharp-villa.blogspot.com/2009/10/sql-string-function.html"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SQL String Function&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Basically SQL String Function allows you to manipulate character data effectively.&lt;br /&gt;&lt;br /&gt;• SQL ASCII Function&lt;br /&gt;• SQL CHR or CHAR Function&lt;br /&gt;• SQL CONCAT Function&lt;br /&gt;• SQL LENGTH or LEN Function&lt;br /&gt;• SQL Replace Function&lt;br /&gt;• SQL Lower Function&lt;br /&gt;• SQL Upper Function&lt;br /&gt;&lt;br /&gt;&lt;a href="http://csharp-villa.blogspot.com/2009/10/sql-mathematics-function.html"&gt;&lt;span style="font-weight: bold;"&gt;SQL Mathematics Function&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Basically SQL mathematics function provider idea about mathematic function.  By using those function can do same mathematics calculation easily.&lt;br /&gt;&lt;br /&gt;• SQL ABS Function&lt;br /&gt;• SQL Cell (or Ceiling ) and Floor Function&lt;br /&gt;• SQL Power Function&lt;br /&gt;• SQL Rand Function&lt;br /&gt;• SQL Round Function&lt;br /&gt;• SQL SQRT Function&lt;br /&gt;• SQL PI Function&lt;br /&gt;• SQL Exp Function&lt;br /&gt;• SQL Log Function&lt;br /&gt;• SQL Trigonometric Function&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-6956340214614170002?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/6956340214614170002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-function-introduction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6956340214614170002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/6956340214614170002'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/sql-function-introduction.html' title='SQL Function Introduction'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4185815996627561583.post-8824584291654200768</id><published>2009-10-04T22:09:00.000-07:00</published><updated>2009-10-05T02:26:29.140-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL CONNECTION'/><title type='text'>How check SQL Connection is Success?</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;How check SQL Connection is Success?&lt;/span&gt;&lt;br /&gt;You can easily check your connection is success or not by using following steps. In here you do not want to run the SQL Management Studio for that.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1st step:&lt;/span&gt;&lt;br /&gt;Open a note pad.&lt;br /&gt;Start   -&gt;Run    -&gt;cmd    -&gt; type (notepad)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2nd step:&lt;/span&gt;&lt;br /&gt;When notepad opens you must save it using any name with the udl extension.  You can save it.&lt;br /&gt;File     -&gt;Save As&lt;br /&gt;Ex. Sqlconn.udl&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SsmA3xKgq7I/AAAAAAAAAm8/K2Xp8ycmJT8/s1600-h/csharp-villa.blogspot.2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 62px; height: 70px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SsmA3xKgq7I/AAAAAAAAAm8/K2Xp8ycmJT8/s320/csharp-villa.blogspot.2.JPG" alt="" id="BLOGGER_PHOTO_ID_5388980124704091058" border="0" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now you can see some icon with Sqlcon.udl is created on your folder which you save in previous step.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3rd step:&lt;/span&gt;&lt;br /&gt;Next you must open that one, simply by clicking on it. Figure 1 show that when you opened your Sqlconn.udl.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_y_9r687TbhU/SsmAqjWOnQI/AAAAAAAAAm0/R0gnwyR7JMM/s1600-h/csharp-villa.blogspot.1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 251px; height: 320px;" src="http://4.bp.blogspot.com/_y_9r687TbhU/SsmAqjWOnQI/AAAAAAAAAm0/R0gnwyR7JMM/s320/csharp-villa.blogspot.1.JPG" alt="" id="BLOGGER_PHOTO_ID_5388979897656843522" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 1 shows that, when opened the Sqlconn.udl which you created on previous steps.&lt;br /&gt;&lt;br /&gt;Select your prefer connection from that.  In here you must select, &lt;span style="font-weight: bold;"&gt;“Microsoft OLE DB Provider for SQL Server”&lt;/span&gt;.  And go to Next&gt;&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4th step:&lt;/span&gt;&lt;br /&gt;By providing your Server name, User name, Password and database you can test connection. If connection is success it provide Connection success message otherwise provide Connection not success message.  Figure 2 is connection.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_y_9r687TbhU/SsmAK9n0mqI/AAAAAAAAAms/SetaIitTy6s/s1600-h/udl2.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 251px; height: 320px;" src="http://3.bp.blogspot.com/_y_9r687TbhU/SsmAK9n0mqI/AAAAAAAAAms/SetaIitTy6s/s320/udl2.JPG" alt="" id="BLOGGER_PHOTO_ID_5388979354954144418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Figure 2 shows that how to provide connection details and check connection is success.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5th step:&lt;/span&gt;&lt;br /&gt;Go to Sqlconn.udl and right click and give open with notepad. When it opens with notepad you can see the connection string. It will generate connection string.&lt;br /&gt;&lt;/div&gt;&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Your Comments are highly appreciated; it will be improving my knowledge also.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4185815996627561583-8824584291654200768?l=csharp-villa.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csharp-villa.blogspot.com/feeds/8824584291654200768/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-check-sql-connection-is-success.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8824584291654200768'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4185815996627561583/posts/default/8824584291654200768'/><link rel='alternate' type='text/html' href='http://csharp-villa.blogspot.com/2009/10/how-check-sql-connection-is-success.html' title='How check SQL Connection is Success?'/><author><name>ShareTuto</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://bp0.blogger.com/_y_9r687TbhU/SE0tLgz38zI/AAAAAAAAABY/Tz9DSmYujp8/S220/a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_y_9r687TbhU/SsmA3xKgq7I/AAAAAAAAAm8/K2Xp8ycmJT8/s72-c/csharp-villa.blogspot.2.JPG' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
