Click here to Skip to main content
Licence CPOL
First Posted 23 Feb 2008
Views 52,774
Bookmarked 34 times

How To Pass Value from User Web Control to Parent ASPX Page

By | 23 Feb 2008 | Article
How to pass values between user control and ASPX page without JavaScript
 
Part of The SQL Zone sponsored by
See Also

Introduction

I was working on a user control where I was trying to pass values from the pop user control to the parent page. It was very easy to use JavaScript and pass the value to the parent page, but it was not easy to find a way to pass value to the parent page without JavaScript. I did find a way to do this and want other developers to get some idea.

Background

Pass value between the user control and ASPX page without the help of JavaScript.

Using the Code

  1. Create a web project
  2. Add a user control to the project
  3. Next, see the code block
  4. Add these lines of code:
    private DataSet data;
    // declare a delegate
    public delegate void U_ListCommandEventHandler
    		(object sender, U_ListCommandEventArgs e);
    //Event
        public event U_ListCommandEventHandler UGridViewChanged;
    //selected index property
      public int SelectedIndex
        {
            get { return UGridView.SelectedIndex; }
            set
            {
                if (!Page.IsPostBack)
                {
                    GVData_Bind();
                }
                if (value < UGridView.Rows.Count)
                {
                    UGridView.SelectedIndex = value;
                    data = U_DataSet
    		(UGridView.Rows[UGridView.SelectedIndex].Cells[1].Text);
                    OnUGridViewChanged(new U_ListCommandEventArgs(data));
                }
            }
        }
    //Method to load data in to dataset
     private DataSet GVData_Bind()
        {
            SqlConnection Con = new SqlConnection(Cn);
            SqlDataAdapter adapter = new SqlDataAdapter();
            adapter.SelectCommand = new SqlCommand("SELECT * FROM Person", Con);
            data = new DataSet();
            adapter.Fill(data, "U_Table");
            return data;
        }
     protected void Page_Load(object sender, EventArgs e)
        {
          // load data to the grid view
        if (!IsPostBack)
            {
            data= GVData_Bind();
            UGridView.DataSource = data;
            UGridView.DataBind();
        }
    }
    //Method to return DataSet base on id
      private DataSet U_DataSet(string id)
        {
            SqlConnection Con = new SqlConnection(Cn);
            SqlDataAdapter adapter = new SqlDataAdapter();
            adapter.SelectCommand = new SqlCommand
    		("SELECT * FROM Person where Id='" + id + "'", Con);
            data = new DataSet();
            adapter.Fill(data, "U_Table");
            return data;
        }
    //method for selected index
     protected void UGridView_SelectedIndexChanged(object sender, EventArgs e)
        {
            data = U_DataSet(UGridView.Rows[UGridView.SelectedIndex].Cells[1].Text);
            OnUGridViewChanged(new U_ListCommandEventArgs(data));
    
        }
    //virtual method
      protected virtual void OnUGridViewChanged(U_ListCommandEventArgs e)
        {
            if (UGridViewChanged != null) UGridViewChanged(this, e);
        }
    // Add this class to the project
    public class U_ListCommandEventArgs
    {
        private DataSet _U_DataSet;
    
    	public U_ListCommandEventArgs(DataSet U_DataSet)
    	{
            _U_DataSet = U_DataSet;
    
    	}
        public DataSet U_DataSet { get { return _U_DataSet; } }
    
    }
    //also Add this
    public class U_ListCommandEventHandler
    {
    	public U_ListCommandEventHandler()
    	{
    		
    	}
    }
  5. Drag and drop the newly built user control on the ASPX page.
  6. Add or update the OnInit() method
    protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            GridViewUsercontrol1.UGridViewChanged+=
    		new GridViewUsercontrol.U_ListCommandEventHandler
    		(GridViewUsercontrol1_UGridViewChanged);        
        }
    //since we are getting dataset back from user control 
    //we can bind it to the gridview.
    private void GridViewUsercontrol1_UGridViewChanged
    		(object sender, U_ListCommandEventArgs e)
        {
            GridView1.DataSource = e.U_DataSet;
            GridView1.DataBind();
        }

History

  • 23rd February, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

T.Ashraf

Technical Lead
TANVTECH
United States United States

Member

More than 10 years of experience in design, architecture and development of various commercial objects oriented application using C# 3.5, ASP.net, relational database like SQL 2008, Oracle, MySQL and SharePoint. Experienced in client-server application development, data security management system, e- commerce, automation processes, claim payment systems, file system and tracking systems, also has very good exposure to the entire software development life cycle.
Tanvtech.com
http://tanvtech.com/Articles/MyFirstSSRSReport.aspx
http://tanvtech.com/Articles/MyFirstSSRSSubReport.aspx
http://tanvtech.com/Articles/MyFirstWcfArticle.aspx
http://tanvtech.com/Articles/MyFirstWcfClientArticle.aspx

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 Pinmemberrjb227s13:20 7 May '09  
Generalthank u tanveer PinmemberMember 295678222:09 28 Aug '08  
Generalneed clarification on this code PinmemberMember 29567820:17 25 Aug '08  
GeneralRe: need clarification on this code PinmemberT.Ashraf3:05 25 Aug '08  
GeneralGood looking PinmemberRiad MS Afyouni22:55 23 Feb '08  
GeneralNice PinmemberAshrafur Rahaman18:51 23 Feb '08  
GeneralAnother simple artilce PinmemberSheo Narayan4:32 11 Jul '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 23 Feb 2008
Article Copyright 2008 by T.Ashraf
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid