17 August 2011

xml read, write, modify data in asp.net

wsex.aspx.cs:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Xml;

public partial class wsex : System.Web.UI.Page
{
    string xmlfile = @"C:\vision\first\emp.xml";
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
            getdata();
    }
    void getdata()
    {
        wsxml ws = new wsxml();
        GridView1.DataSource = ws.getdata();
        GridView1.DataBind();
    }

    protected void Button1_Click(object sender, EventArgs e)//insert
    {
        XmlDocument xd = new XmlDocument();
        xd.Load(xmlfile);
        XmlElement xe = xd.CreateElement("emp");

        XmlElement id = xd.CreateElement("id");
        id.InnerText = TextBox1.Text;
        xe.AppendChild(id);

        XmlElement nam = xd.CreateElement("name");
        nam.InnerText = TextBox2.Text;
        xe.AppendChild(nam);

        XmlElement ad = xd.CreateElement("add");
        ad.InnerText = TextBox3.Text;
        xe.AppendChild(ad);

        xd.DocumentElement.AppendChild(xe);
        xd.Save(xmlfile);
        Response.Redirect("~/wsex.aspx");
     
    }
    protected void Button2_Click(object sender, EventArgs e)//update
    {
        DataSet ds = new DataSet();
        ds.ReadXml(Server.MapPath("emp.xml"));
        for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
        {
            if (TextBox1.Text == ds.Tables[0].Rows[i]["id"].ToString())
            {
                ds.Tables[0].Rows[i]["name"] = TextBox2.Text;
                ds.Tables[0].Rows[i]["add"] = TextBox3.Text;
                ds.WriteXml(Server.MapPath("emp.xml"));
            }
        }
        Response.Redirect("~/wsex.aspx");
    }
    protected void Button3_Click(object sender, EventArgs e)//delete
    {
        DataSet ds = new DataSet();
        ds.ReadXml(Server.MapPath("emp.xml"));
        for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
        {
            if (TextBox1.Text == ds.Tables[0].Rows[i]["id"].ToString())
            {
                ds.Tables[0].Rows[i].Delete();
                ds.WriteXml(Server.MapPath("emp.xml"));
            }
        }
        Response.Redirect("~/wsex.aspx");
    }
}

emp.xml:
<?xml version="1.0" standalone="yes"?>
<employee>
  <emp>
    <id>1</id>
    <name>s</name>
    <add>s</add>
  </emp>
  <emp>
    <id>2</id>
    <name>b</name>
    <add>che</add>
  </emp>
  <emp>
    <id>3</id>
    <name>c</name>
    <add>ban</add>
  </emp>
</employee>


wsxml:(webservice class)

 [WebMethod]
    public DataSet getdata()
    {
        DataSet ds = new DataSet();
        ds.ReadXml(Server.MapPath("emp.xml"));
        return ds;
    }

31 July 2011

Reverse of a string or number in console apps


class Reverseofno
    {
        public static void Main()
        {
            Console.WriteLine("enter a no/string: ");
            string a = Console.ReadLine();
            for (int x = a.Length - 1; x >= 0; x--)
            {
                Console.Write(a[x]);
            }

            Console.WriteLine();
           
            string bb = string.Empty;
            Console.WriteLine("enter a no/string: ");
            string b = Console.ReadLine();
            for (int x = b.Length - 1; x >= 0; x--)
            {
                bb += b[x].ToString();
            }
            string[] bbb = new string[bb.Split(' ').Length];
            for (int y = 0; y <= bb.Split(' ').Length-1; y++)
            {
                bbb[y] = bb.Split(' ')[y]+" ";
            }
            for (int z = bbb.Length - 1; z >= 0; z--)
            {
                Console.Write(bbb[z]);
            }
           
            Console.WriteLine();
           
            Console.WriteLine("enter a name: ");
            string n= Console.ReadLine();
            if(bbb.Contains(n+" "))
                Console.WriteLine("found");
            else
                Console.WriteLine("not found");
            Console.ReadLine();
        }
    }

Interface overriding in console apps


interface Interface
{
      void add(int x, int y);
}
class overrideinterface : Interface
{
      public void add(int a, int b)
      {
            Console.WriteLine("add is: " + (a + b));
      }
      public static void Main()
      {
            overrideinterface ovri = new overrideinterface();
            ovri.add(5, 5);
            Console.ReadLine();
      }
}

Note: A class can inherit any no.of interfaces separated by comma(,)

Virtual class overriding


class Virtual
{
        public virtual void add(int a, int b)
        {
            Console.WriteLine(a + b);
        }
}
class overridevirtual:Virtual
{
        public override void add(int a, int b)
        {
            Console.WriteLine(a);
        }
        public static void Main()
        {
            Virtual vir = new Virtual();
            vir.add(1,2);
            Console.ReadLine();
        }
}

Abstract Overriding in console apps


abstract class Abstract
{
      public abstract void mul(int x);
      public void add(int x, int y)
      {
          Console.WriteLine("add is: "+ (x + y));
      }
}
class overrideabstract : Abstract
{
      public override void mul(int a)
      {
          Console.WriteLine("mul is: "+ a*a);
      }
      public static void Main()
      {
          overrideabstract ovra = new overrideabstract();
          ovra.add(4, 5);
          ovra.mul(3);
          Console.ReadLine();
      }
}

Prime No. in console apps


class Prime
    {
        static void Main(string[] args)
        {
            int j = 0;
            int count = 0;
            Console.WriteLine("Plz enter a number: ");
            int n =int.Parse( Console.ReadLine());

            Console.WriteLine("The Prime no's are:");
            for (int i = 2; i <= n; i++)
            {
                for (j = 2; j <= i; j++)
                {
                    if (i % j == 0)
                    {
                        break;
                    }
                }
                if (i == j)
                {
                    Console.WriteLine(i);
                    count++;
                }
            }
            Console.WriteLine();
            Console.Write("Total Prime No's: "+count);
            Console.ReadLine();
        }

Constructor OverLoading in Console apps

class CACOverLoading
{
        int x;
        public CACOverLoading()
        {
            Console.WriteLine("Default constructor");
            x = 123;
        }
        public CACOverLoading(int x)
        {
            Console.WriteLine("Parameterized constructor");
            Console.WriteLine(x);
            this.x = 789;
        }
        public void display()
        {
            Console.WriteLine(x);
        }
        public static void Main()
        {
            CACOverLoading col = new CACOverLoading();
            col.display();
            CACOverLoading col1 = new CACOverLoading(456);
            col1.display();
            Console.ReadLine();
        }
}

Method OverLoading in console apps


class mOverLoading
    {
        int x=10;
        public void show()
        {
            Console.WriteLine("default constructor");
            Console.WriteLine(x + this.x);
        }
        public void show(int x)
        {
            Console.WriteLine("Parameterized constructors");
            Console.WriteLine(x+" "+this.x);
        }
        public void show(string s, int x)
        {
            Console.WriteLine("Parameterized constructor");
            Console.WriteLine(s + " " + x);
        }
        public static void Main()
        {
            mOverLoading mol = new mOverLoading();
            mol.show();
            mol.show(123);
            mol.show("satya", 456);
            Console.ReadLine();
        }
    }

Operator OverLoading in console apps


class ClsComplex
{
        int R, I;
        public ClsComplex(int R, int I)
        {
            this.R = R;
            this.I = I;
            Console.WriteLine("{0} + {1}i", R, I);
        }
        public static ClsComplex operator +(ClsComplex Num1, ClsComplex Num2)
        {
            ClsComplex Num3 = new ClsComplex(Num1.R + Num2.R, Num1.I + Num2.I);
            return Num3;
        }
}
class ClsOpOverLoad
{
        static void Main(string[] args)
        {
            Console.Write("C1= ");
            ClsComplex C1 = new ClsComplex(4, 5);
            Console.Write("C2= ");
            ClsComplex C2 = new ClsComplex(8, 2);
            Console.Write("C3= ");
            ClsComplex C3 = C1 + C2;
            Console.Read();
        }
}

30 July 2011

Reverse of a string or number in console apps


class Reverseofno
    {
        public static void Main()
        {
            Console.WriteLine("enter a no/string: ");
            string a = Console.ReadLine();
            for (int x = a.Length - 1; x >= 0; x--)
            {
                Console.Write(a[x]);
            }

            Console.WriteLine();
           
            string bb = string.Empty;
            Console.WriteLine("enter a no/string: ");
            string b = Console.ReadLine();
            for (int x = b.Length - 1; x >= 0; x--)
            {
                bb += b[x].ToString();
            }
            string[] bbb = new string[bb.Split(' ').Length];
            for (int y = 0; y <= bb.Split(' ').Length-1; y++)
            {
                bbb[y] = bb.Split(' ')[y]+" ";
            }
            for (int z = bbb.Length - 1; z >= 0; z--)
            {
                Console.Write(bbb[z]);
            }
           
            Console.WriteLine();
           
            Console.WriteLine("enter a name: ");
            string n= Console.ReadLine();
            if(bbb.Contains(n+" "))
                Console.WriteLine("found");
            else
                Console.WriteLine("not found");
            Console.ReadLine();
        }
    }

Interface overriding in console apps


interface Interface
    {
        void add(int x, int y);
    }
    class overrideinterface : Interface
    {
        public void add(int a, int b)
        {
            Console.WriteLine("add is: " + (a + b));
        }
        public static void Main()
        {
            overrideinterface ovri = new overrideinterface();
            ovri.add(5, 5);
            Console.ReadLine();
        }
    }

Abstract Overriding in console apps


abstract class Abstract
    {
        public abstract void mul(int x);
        public void add(int x, int y)
        {
            Console.WriteLine("add is: "+(x + y));
        }
    }
    class overrideabstract : Abstract
    {
        public override void mul(int a)
        {
            Console.WriteLine("mul is: "+a*a);
        }
        public static void Main()
        {
            overrideabstract ovra = new overrideabstract();
            ovra.add(4, 5);
            ovra.mul(3);
            Console.ReadLine();
        }
    }

Virtual class overriding


class Virtual
    {
        public virtual void add(int a, int b)
        {
            Console.WriteLine(a + b);
        }
    }
    class overridevirtual:Virtual
    {
        public override void add(int a, int b)
        {
            Console.WriteLine(a);
        }
        public static void Main()
        {
            Virtual vir = new Virtual();
            vir.add(1,2);
            Console.ReadLine();
        }
    }

Prime No. in console apps


class Prime
    {
        static void Main(string[] args)
        {
            int j = 0;
            int count = 0;
            Console.WriteLine("Plz enter a number: ");
            int n =int.Parse( Console.ReadLine());

            Console.WriteLine("The Prime no's are:");
            for (int i = 2; i <= n; i++)
            {
                for (j = 2; j <= i; j++)
                {
                    if (i % j == 0)
                    {
                        break;
                    }
                }
                if (i == j)
                {
                    Console.WriteLine(i);
                    count++;
                }
            }
            Console.WriteLine();
            Console.Write("Total Prime No's: "+count);
            Console.ReadLine();
        }

Constructor OverLoading in Console apps


class CACOverLoading
    {
        int x;
        public CACOverLoading()
        {
            Console.WriteLine("Default constructor");
            x = 123;
        }
        public CACOverLoading(int x)
        {
            Console.WriteLine("Parameterized constructor");
            Console.WriteLine(x);
            this.x = 789;
        }
        public void display()
        {
            Console.WriteLine(x);
        }
        public static void Main()
        {
            CACOverLoading col = new CACOverLoading();
            col.display();
            CACOverLoading col1 = new CACOverLoading(456);
            col1.display();
            Console.ReadLine();
        }
    }