コード例 #1
0
		protected void dlstRegion_ItemCommand(object source, DataListCommandEventArgs e)
		{
			LinkButton lbtnRegion = (LinkButton)e.Item.FindControl("lbtnRegion");
			lbtnRegion1.Text = lbtnRegion.Text;
			tourRegion = Convert.ToInt32(lbtnRegion.CommandArgument);
			mvMain.SetActiveView(viewCountries);
			WebDataAccess webDataAccess = new WebDataAccess();
			dlstCountry.DataSource = webDataAccess.GetTourCountry("I", tourSubType);
			dlstCountry.DataBind();

		}