Example #1
0
    protected void btn_submit_Click(object sender, EventArgs e)
    {
        int i = bl.insert_city(txt_city.Text.ToString());

        if (i > 0)
        {
            txt_city.Text = "";
            databind_city();
        }
    }