Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         GridView1.DataSource = client.GetAllRestaurnat();
         GridView1.DataBind();
     }
 }
Ejemplo n.º 2
0
 private void loadDropdownlist()
 {
     DropDownList1.DataSource     = client.GetAllRestaurnat();
     DropDownList1.DataTextField  = "Name";
     DropDownList1.DataValueField = "Id";
     DropDownList1.DataBind();
 }