2
Answers

stored procedure for conversion of percentage values

Jothish Kumar

Jothish Kumar

7y
212
1
hi friends,  
 
what is the coding for conversion interger values to percentage in SQL SP ?? 
 
 
 
Answers (2)
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
UserControl1
 
As per your comment you have a button and click of button it fires below event. Inside that method you need to create object of your second user control and call grid load method to reload your grid. See below code:
 
protected void Save_Click(object sender, EventArgs e)
{
   UserControl2 ctrlB = new UserControl2();
   ctrlB.GridLoad();
}
 
UserControl2
 
Declare a public public function which reload your grid.
 
public void GridLoad()
{
   // Implement your own logic to load grid
   gridView1.DataSource = tempList;
}