using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.Mobile; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.MobileControls; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.MobileControls.MobilePage { protected void HandleSingleSelection(object sender, EventArgs e) { this.ActiveForm = Form2; String selectedMobile = SelectionList1.Selection.Value; Label3.Text = SelectionList1.Selection + selectedMobile; } } |