Tuesday, 27 March 2012

GRIDVIEW EDIT/UPDATE, DELETE IN ASP.NET USING C#.NET

Asp.Net

C#.Net
Gridview Edit & delete

Download The Source Here :

GridView Editing

Here with i composed Gridview Editing and deleting in Asp.Net using C#.Net

DATABASE & TABLE :


Create The Database With the Name Gv & In That Execute The Below Query

USE [Gv]
GO
/****** Object:  Table [dbo].[Registration]    Script Date: 03/27/2012 23:30:32 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Registration](
[UID] [bigint] IDENTITY(1,1) NOT NULL,
[UserName] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[PassWord] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ConfirmPassWord] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Address] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Age] [bigint] NULL,
[BloodGroup] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[PhoneNo] [bigint] NULL,
[Email] [nvarchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[DOB] [datetime] NULL,
 CONSTRAINT [PK_Registration] PRIMARY KEY CLUSTERED 
(
[UID] ASC
)WITH (PAD_INDEX  = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]




Default.aspx :



<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

   
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Data Grid</title>
</head>

<body>
    <form id="form1" runat="server">
    <%--<div allowpaging="true" style="height: 180px">--%>
   
        <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
            BackColor="#DEBA84" BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" 
            CellPadding="3" CellSpacing="2" Height="16px" 
            onpageindexchanging="GridView1_PageIndexChanging" 
            onrowcancelingedit="GridView1_RowCancelingEdit" 
            onrowdeleting="GridView1_RowDeleting" onrowediting="GridView1_RowEditing" 
            onrowupdating="GridView1_RowUpdating" Width="178px" 
            onselectedindexchanged="GridView1_SelectedIndexChanged">
            <FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
            <RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
           
           
            <Columns>
           
                <asp:TemplateField HeaderText="UID">
               
                <ItemTemplate>
                <asp:Label ID = "lbl1" runat = "server" Text = '<% #bind("UID") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:Label id = "lbl1" runat = "server" text = '<% #bind("UID") %>'>
                </asp:Label>
                </EditItemTemplate>
               
                </asp:TemplateField>  
               
                                         
               
                <asp:TemplateField HeaderText="UserName">
               
                <ItemTemplate>
                <asp:Label ID = "lbl2" runat = "server" Text = '<% #bind("UserName") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtusername" runat = "server" text = '<% #bind("UserName") %>'>
                </asp:TextBox>
                </EditItemTemplate>              
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="PassWord">
               
                <ItemTemplate>
                <asp:Label ID = "lbl3" runat = "server" Text = '<% #bind("PassWord") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtpassword" runat = "server" text = '<% #bind("PassWord") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
                <asp:TemplateField HeaderText="ConfirmPassWord">
               
                <ItemTemplate>
                <asp:Label ID = "lbl4" runat = "server" Text = '<% #bind("ConfirmPassWord") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtconfirmpassword" runat = "server" text = '<% #bind("ConfirmPassWord") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
                <asp:TemplateField HeaderText="Address">
               
                <ItemTemplate>
                <asp:Label ID = "lbl5" runat = "server" Text = '<% #bind("Address") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtaddress" runat = "server" text = '<% #bind("Address") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
                <asp:TemplateField HeaderText="Age">
               
                <ItemTemplate>
                <asp:Label ID = "lbl6" runat = "server" Text = '<% #bind("Age") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtage" runat = "server" text = '<% #bind("Age") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="BloodGroup">
               
                <ItemTemplate>
                <asp:Label ID = "lbl7" runat = "server" Text = '<% #bind("BloodGroup") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtbloodgroup" runat = "server" text = '<% #bind("BloodGroup") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="PhoneNo">
               
                <ItemTemplate>
                <asp:Label ID = "lbl8" runat = "server" Text = '<% #bind("PhoneNo") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtphoneno" runat = "server" text = '<% #bind("PhoneNo") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="Email">
               
                <ItemTemplate>
                <asp:Label ID = "lbl9" runat = "server" Text = '<% #bind("Email") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtemail" runat = "server" text = '<% #bind("Email") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="DOB">
               
                <ItemTemplate>
                <asp:Label ID = "lbl10" runat = "server" Text = '<% #bind("DOB") %>'>
                </asp:Label>
                </ItemTemplate>
               
                <EditItemTemplate>
                <asp:TextBox id = "txtdob" runat = "server" text = '<% #bind("DOB") %>'>
                </asp:TextBox>
                </EditItemTemplate>
               
                </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="Edit">
               
                <ItemTemplate >
                <asp:LinkButton ID ="lnk1" runat ="server" Text ="Edit" CommandName ="Edit">
                </asp:LinkButton>
           
               </ItemTemplate>
               <EditItemTemplate>
           
               <asp:LinkButton ID ="lnk2" runat ="server" Text ="Update" CommandName ="Update">
               </asp:LinkButton>
           
               <asp:LinkButton ID ="lnk3" runat ="server" Text ="Cancel" CommandName ="Cancel">
               </asp:LinkButton>
               </EditItemTemplate>
               
               </asp:TemplateField>
               
               
               
               
                <asp:TemplateField HeaderText="Delete">
               
                <ItemTemplate >
                <asp:LinkButton ID ="lnk4" runat="server" Text ="Delete" CommandName ="delete">
                </asp:LinkButton>
               </ItemTemplate>
               
                </asp:TemplateField>
               
            </Columns>
           
           
            <PagerStyle ForeColor="#8C4510" HorizontalAlign="Center" />
            <SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
        </asp:GridView>
   
    <%--</div>--%>
    <br />
    </form>
</body>
</html>





Default.aspx.cs :


using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
using System.IO;
using System.Text;
using System.Collections;
using System.Net;


public partial class _Default : System.Web.UI.Page 
{



SqlConnection con = new SqlConnection("data source=GV\\SQLEXPRESS;initial catalog = gv;user id=sa; password=sqldata; ");
    SqlCommand cmd = new SqlCommand();
    SqlDataAdapter da = new SqlDataAdapter();
    DataSet ds = new DataSet();
    //int index = 0;


    protected void Display()
    {

        con.Open();
        cmd.Connection = con;
        da = new SqlDataAdapter("select * from registration", con);
        da.Fill(ds, "registration");
        GridView1.DataSource = ds;
        GridView1.DataBind();
        con.Close();
    }


   
    protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            if (!IsPostBack)
            {
                Display();
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }


protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        try
        {
            GridView1.PageIndex = e.NewPageIndex;
            Display();
        }
        catch(Exception ex)
        {
            throw ex;
        }
    }
   
    
    
    protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        try
        {
            GridViewRow r = GridView1.Rows[e.RowIndex];
            Label idlbl;
            idlbl = (Label)r.FindControl("lbl1");
            con.Open();
            cmd.Connection = con;
            cmd.CommandText = "delete from registration where uid = '" + idlbl.Text + "'";
            cmd.ExecuteNonQuery();
            con.Close();
            GridView1.EditIndex = -1;
            Display();
        }

        catch(Exception ex)
        {
            throw ex;
        }

    }
   
    
    protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
        try
        {
            GridViewRow r = GridView1.Rows[e.RowIndex];
            TextBox UN, PWd, CPWd, Add,Age,BG,PN,Eml,Dt;
            Label id;
            UN = (TextBox)r.FindControl("txtUserName");
            PWd = (TextBox)r.FindControl("txtPassWord");
            CPWd = (TextBox)r.FindControl("txtConfirmPassWord");
            Add = (TextBox)r.FindControl("txtAddress");
            Age = (TextBox)r.FindControl("txtAge");
            BG = (TextBox)r.FindControl("txtBloodGroup");
            PN = (TextBox)r.FindControl("txtPhoneNo");
            Eml = (TextBox)r.FindControl("txtemail");
            Dt = (TextBox)r.FindControl("txtdob");

            id = (Label)r.FindControl("lbl1");

            con.Open();
            cmd.Connection = con;
            cmd.CommandText = "update registration set UserName = '" + UN.Text + "',PassWord = '" + PWd.Text + "',ConfirmPassWord = '" + CPWd.Text + "',Address = '" + Add.Text + "',Age = '" + Age.Text + "',BloodGroup = '" + BG.Text + "',PhoneNo = '" + PN.Text + "',email = '" + Eml.Text + "',dob = '" + Dt.Text + "' where uid = '" + id.Text + "' ";
            cmd.ExecuteNonQuery();
            con.Close();
            GridView1.EditIndex = -1;
            Display();
        }
        catch (Exception ex)
        {
            throw ex;
        }

    }




    protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {
        try
        {
            GridView1.EditIndex = -1;
            Display();
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }




    protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
    {
        try
        {
            GridView1.EditIndex = e.NewEditIndex;
            Display();
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

}

History Of The Day - 27-03 ( March )

Day of Burmese Army 

Between Denmark and Sweden was neutral (1794) 

International Theatre Day 

Juan Ponce de leon,
discovered  North America (1513)
 

Maltova, pecarapiya etc. merged with Romania (1918) 

The unmanned automated spacecraft,
NASA's Mariner 7 was launched toward Mars chair (1969)
 

Permanent in the United States Navy,
which was set up for the Office (1794)
 

The first airline in Europe, launched in Germany (1994) 

flight concorde Undertook
its first supersonic  trip (1970)
 
History Of The Day - 27-03 ( March ) :


  • Maltova, pecarapiya etc. merged with Romania (1918)

  • The unmanned automated spacecraft, NASA's Mariner 7 was launched toward Mars chair (1969)

  • flight concorde Undertook its first supersonic  trip (1970)

  • International Theatre Day

  • Juan Ponce de leon, discovered  North America (1513)

  • Between Denmark and Sweden was neutral (1794)

  • Day of Burmese Army

  • The first airline in Europe, launched in Germany (1994)

  • Permanent in the United States Navy, which was set up for the Office (1794)

வரலாற்றில் இன்று : 27-03 ( மார்ச் ) :  

  • மல்தோவா, பெசராபியா ஆகியன ருமேனியாவுடன் இணைந்தன(1918)

  • நாசாவின் மரைனர் 7 என்ற ஆளில்லா தானியங்கி விண்கலம் செவ்வாய் கோளை நோக்கி ஏவப்பட்டது(1969)

  • கொன்கோர்ட் விமானம் தனது முதல் சூப்பர்சோனிக் பயணத்தை மேற்கொண்டது(1970)

  • சர்வதேச தியேட்டர் தினம்

  • ஜுவான் பொன்ஸ் டி லெயோன், வட அமெரிக்காவை கண்டுபிடித்தார்(1513)

  • டென்மார்க் மற்றும் ஸ்வீடன் இடையே நடுநிலை ஏற்பட்டது(1794)

  • பர்மாவின் ராணுவ படை தினம்

  • ஐரோப்பாவில் முதல் விமான சேவை ஜெர்மனியில் துவங்கப்பட்டது(1994)

  • அமெரிக்காவில் நிரந்தர கடற்படையும், அதற்கான அலுவலகமும் அமைக்கப்பட்டது(1794)

दिवस का इतिहास - 27-03 (मार्च): 

  • Maltova, pecarapiya आदि रोमानिया (1918) के साथ विलय

  • मानवरहित स्वचालित, नासा के अंतरिक्ष यान मेरिनर 7 मंगल ग्रह कुर्सी (1969) की ओर शुरू किया गया था

  • उड़ान flight concordeफ्लाइट अपनी पहली सुपरसोनिक यात्रा (1970) चलाया

  • अंतरराष्ट्रीय रंगमंच दिवस

  • Juan Ponce de leon, उत्तर अमेरिका (1513) की खोज

  • डेनमार्क और स्वीडन के बीच तटस्थ (1794) था

  • बर्मी सेना का दिन

  • यूरोप में पहली एयरलाइन, जर्मनी में शुरू की (1994)

  • संयुक्त राज्य अमेरिका नौसेना, जो कार्यालय (1794) के लिए स्थापित किया गया था में स्थायी

Monday, 26 March 2012

History Of The Day - 26-03 ( March )


Bangladesh Liberation Day (1971) 

Israel - Egypt peace treaty
was signed in Washington (1979)
 

Myanmar's new capital city of  naypito
the new military rulers 
Announced (2006) 

Examination for vehicle drivers
was introduced in Russia (1934)
 

United Kingdom, introduced,
the test for vehicle drivers (1934)
 

Jonas calk introduced  polio vaccine(1953) 



History Of The Day - 26-03 ( March ) :

  • Bangladesh Liberation Day (1971)

  • Examination for vehicle drivers was introduced in Russia (1934)

  • Jonas calk introduced  polio vaccine(1953)

  • Myanmar's new capital city of  naypito the new military rulers Announced (2006)

  • United Kingdom, introduced, the test for vehicle drivers (1934)

  • Israel - Egypt peace treaty was signed in Washington (1979)

  • The first scientific conference in Chennai, Tamil (2006)

வரலாற்றில் இன்று : 26-03 ( மார்ச் ) : 

  • வங்கதேச விடுதலை தினம்(1971)

  • ரஷ்யாவில் வாகன ஓட்டுனர்களுக்கான தேர்வு அறிமுகப்படுத்தப்பட்டது(1934)

  • ஜொனாஸ் சால்க், போலியோ தடுப்பூசியை அறிமுகப்படுத்தினார்(1953)

  • மியான்மரின் புதிய தலைநகராக நாய்பிடோ என்ற புதிய நகரம் ராணுவ ஆட்சியாளர்களால் 
  • அறிவிக்கப்பட்டது(2006)

  • யு.கே.,ல் வாகன ஓட்டுனர்களுக்கான தேர்வு அறிமுகப்படுத்தப்பட்டது(1934)

  • இஸ்ரேல்-எகிப்து அமைதி ஒப்பந்தம் வாஷிங்டனில் கையெழுத்தானது(1979)

  • முதல் அறிவியல் தமிழ் மாநாடு சென்னையில் நடைபெற்றது(2006)

दिवस का इतिहास - 26-03 (मार्च):

  • बांग्ला लिबरेशन दिवस (1971)

  • वाहन चालकों के लिए पसंद रूस (1934) में पेश किया गया था

  • जोनास कॉक, पोलियो वैक्सीन शुरू (1953)

  • म्यांमार के नए सैन्य शासकों के नई राजधानी naypito हैं
  • की घोषणा की (2006)

  • यूनाइटेड किंगडम, वाहन चालकों के लिए परीक्षण (1934) में शुरू

  • इसराइल मिस्र शांति संधि वाशिंगटन में हस्ताक्षर किए गए थे (1979)

  • चेन्नई, तमिलनाडु में पहली वैज्ञानिक सम्मेलन (2006)


Sunday, 25 March 2012

History Of The Day - 25-03 ( March )

Christiaan Huygens discovered the moon Titan
in the largest planet Saturn (1655)
 

Greek Independence Day 

Lyon  Skott , received a patent for
a device that records sound (1857)
 

The first color television R.C.A, released (1954) 

Set by the People's Republic of Belarus (1918) 

Slaves to do business legally in the
United States banned the Rajya (1807)
 

The official declaration of state of this structure Of
Andira  was published by Jawaharlal Nehru (1953)
 


History Of The Day - 25-03 ( March ) : 


  • Greek Independence Day

  • Christiaan Huygens discovered the moon Titan in the largest planet Saturn (1655)

  • The first color television R.C.A, released (1954)

  • Lyon  Skott , received a patent for a device that records sound (1857)

  • Set by the People's Republic of Belarus (1918)

  • The official declaration of state of this structure Of Andira  was published by Jawaharlal Nehru (1953)

  • Slaves to do business legally in the United States banned the Rajya (1807)

வரலாற்றில் இன்று : 25-03 ( மார்ச் ) : 

  • கிரேக்க விடுதலை தினம்

  •  டைட்டான் என்ற சனிக் கோளின் மிகப் பெரிய சந்திரனை கிறிஸ்டியன் ஹைஜன்ஸ் கண்டுபிடித்தார்(1655)

  •  முதலாவது வண்ணத் தொலைக்காட்சியை ஆர்.சி.ஏ., நிறுவனம் வெளியிட்டது(1954)

  •  லியோன் ஸ்கொட், ஒலியை பதிவு செய்யும் கருவிக்கான காப்புரிமம் பெற்றார்(1857)

  • பெலாரஸ் மக்கள் குடியரசு அமைக்கப்பட்டது(1918)

  •  ஆந்திர மாநில அமைப்பு குறித்த அதிகாரபூர்வ பிரகடனம் ஜவஹர்லால் நேருவால் வெளியிடப்பட்டது(1953)

  •  அடிமைகளை வர்த்தகம் செய்வது ஐக்கிய ராஜ்ய நாடுகளில் சட்டப்பூர்வமாக தடை செய்யப்பட்டது(1807)

दिवस का इतिहास - 25-03 (मार्च): 

  • ग्रीक स्वतंत्रता दिवस

  • Christiaan Huygens का सबसे बड़ा ग्रह शनि (1655) में चंद्रमा टाइटन की खोज

  • पहली रंग टेलीविजन R.C.A के जारी (1954)

  • Skot, ल्यों, एक युक्ति है कि रिकॉर्ड ध्वनि (1857) के लिए एक पेटेंट प्राप्त

  • पीपुल्स बेलारूस गणराज्य (1918) सेट

  • Andira इस संरचना की राज्य की आधिकारिक घोषणा जवाहर लाल नेहरू (1953) द्वारा प्रकाशित किया गया था

  • व्यापार संयुक्त राज्य अमेरिका में कानूनी तौर पर करने के गुलाम प्रतिबंधित राज्य (1807)

Saturday, 24 March 2012

History Of The Day - 24-03 ( March )


Greece republic Day (1923) 

Lord Mountbatten,
Governor General of India (1947)
 

Carnatic film singer Sirkali
S.Govindarajan dead Day (1988)
 

Tamil film playback singer,
T. M. Sounthar Rajan birthday (1923)
 

one of Trinity of Music,
Muttucuvami titcitar birthday(1776)
 

World TB Day 



History Of The Day - 24-03 ( March ) :

  • World TB Day

  • Greece republic Day (1923)

  • one of Trinity of Music, Muttucuvami titcitar birthday(1776)

  • Tamil film playback singer, T. M. Sounthar Rajan birthday (1923)

  • Lord Mountbatten, Governor General of India (1947)

  • Carnatic film singer Sirkali S.Govindarajan dead Day (1988)

வரலாற்றில் இன்று : 24-03 ( மார்ச் ) : 

  • சர்வதேச காச நோய் தினம்

  •  கிரீஸ் நாடு குடியரசானது(1923)

  •  இசை மும்மூர்த்திகளில் ஒருவரான முத்துசுவாமி தீட்சிதர் பிறந்த தினம்(1776)

  •  தமிழ் திரைப்பட பின்னணி பாடகர் டி.எம்.செளந்தரராஜன் பிறந்த தினம்(1923)

  • மவுண்ட்பேட்டன் பிரபு இந்திய கவர்னர் ஜெனரலானார்(1947)

  •  கர்நாடக மற்றும் திரைப்பட பாடகர் சீர்காழி எஸ்.கோவிந்தராஜன் இறந்த தினம்(1988)

दिवस का इतिहास - 24-03 (मार्च): 

  • विश्व टीबी दिवस

  • ग्रीस गणतंत्र दिवस (1923)

  • गाने के ट्रिनिटी की, Muttucuvami titcitar जन्मदिन (1776)

  • तमिल फिल्म पार्श्व गायक, क्या टीएम Sounthar राजन जन्मदिन (1923)

  • लॉर्ड माउंटबेटन, भारत के गवर्नर जनरल (1947)

  • कर्नाटक फिल्म गायक Sirkali S.Govindarajan मृत दिवस (1988)


Friday, 23 March 2012

History Of The Day - 23-03 ( March )


Indian freedom fighter
Bhagat Singh's death, Day (1931)
 

Indian agricultural scientist
GD Naidu's birthday (1893)
 

Muslim League, issued a request to divide
India on religious grounds (1940)
 

Pakistan's Republic Day (1956) 

Film Titanic won 11 Oscars (1998) 

University of California
founded (1868)
 

World Meteorological Day 



History Of The Day - 23-03 ( March ) :

  • World Meteorological Day

  • Pakistan's Republic Day (1956)

  • Pakistan's first Islamic republic in the world (1956)

  • University of California founded (1868)

  • Muslim League, issued a request to divide India on religious grounds (1940)

  • Film Titanic won 11 Oscars (1998)

  • Indian agricultural scientist GD Naidu's birthday (1893)

  • Indian freedom fighter Bhagat Singh's death, Day (1931)

வரலாற்றில் இன்று : 23-03 ( மார்ச் ) : 

  • உலக வானிலை தினம்

  •  பாகிஸ்தான் குடியரசு தினம்(1956)

  •  பாகிஸ்தான் உலகின் முதல் இஸ்லாமியக் குடியரசானது(1956)

  •  கலிபோர்னியா பல்கலைக்கழகம் நிறுவப்பட்டது(1868)

  •  முஸ்லீம் லீக், இந்தியாவை மத அடிப்படையில் பிரிக்கும் கோரிக்கையை வெளியிட்டது(1940)

  •  டைட்டானிக் திரைப்படம் 11 ஆஸ்கார் விருதுகளை வென்றது(1998)

  •  தமிழக விவசாய அறிவியலாளர் ஜி.டி.நாயுடு பிறந்த தினம்(1893)

  •  இந்திய சுத‌ந்திர போராட்ட வீரர் பகத் சிங் இறந்த தினம்(1931)

दिवस का इतिहास - 23-03 (मार्च): 

  • विश्व मौसम विज्ञान दिवस

  •  पाकिस्तान के गणतंत्र दिवस (1956)

  •  पाकिस्तान दुनिया में पहला इस्लामी गणतंत्र (1956)

  •  कैलिफोर्निया विश्वविद्यालय की स्थापना की (1868)

  •  मुस्लिम लीग, धार्मिक आधार पर भारत को विभाजित करने का अनुरोध (1940) जारी

  •  फिल्म टाइटैनिक जीता 11 ऑस्कर (1998)

  •  भारतीय कृषि वैज्ञानिक जी.डी. नायडू जन्मदिन (1893)

  •  भारतीय स्वतंत्रता सेनानी भगत सिंह की मौत, दिन (1931)

Related Posts Plugin for WordPress, Blogger...
^ Scroll to Top Twitter Bird Gadget