예제 #1
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        add_trip_info inf = new add_trip_info();
        add_trip_sp   sp  = new add_trip_sp();

        inf.Regn_no  = txtregno.Text;
        inf.From     = txtfrom.Text;
        inf.To       = txtto.Text;
        inf.Time     = (DD1.SelectedItem.ToString() + ":" + DD2.SelectedItem.ToString() + " " + ddlapm.SelectedItem.ToString());
        inf.Trip_no  = int.Parse(txttripno.Text);
        inf.Category = ddlcategory.SelectedItem.ToString();
        inf.Day      = ddlday.SelectedItem.ToString();
        inf.Towards  = TextBox1.Text;
        sp.Add(inf);

        txtfrom.Text  = "";
        txtregno.Text = "";

        txtto.Text     = "";
        txttripno.Text = "";
        ddlday.ClearSelection();
        ddlcategory.ClearSelection();
        ddlapm.ClearSelection();
        DD2.ClearSelection();
        DD1.ClearSelection();
    }
예제 #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            txtfrom.Text  = "";
            txtregno.Text = "";

            txtto.Text     = "";
            txttripno.Text = "";
            ddlday.ClearSelection();
            ddlcategory.ClearSelection();
            ddlapm.ClearSelection();
            DD2.ClearSelection();
            DD1.ClearSelection();
        }
    }