示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         test = new konrad.CourierService();
         string[] st = { "1", "2", "3", "4", "5" };
         DropDownListStatus.DataSource = st;
         DropDownListStatus.DataBind();
     }
 }
示例#2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         test = new konrad.CourierService();
         string[] st = test.getCountries();
         DropDownCountry.DataSource = st;
         DropDownCountry.DataBind();
         changeDistricts();
     }
 }
示例#3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     test = new konrad.CourierService();
 }
示例#4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     //test = new konrad.serverImplementationService();
     test = new konrad.CourierService();
 }