38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace ETS_WS
|
|
{
|
|
public partial class testMast : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
mod_textAutocomplete3.eh_valSelezionato += new EventHandler(mod_textAutocomplete3_eh_valSelezionato);
|
|
txtSel.Text = mod_textAutocomplete3.valore;
|
|
}
|
|
|
|
void mod_textAutocomplete3_eh_valSelezionato(object sender, EventArgs e)
|
|
{
|
|
txtSel.Text = mod_textAutocomplete3.valore;
|
|
}
|
|
|
|
//protected void sex_SelectedIndexChanged(object sender, EventArgs e)
|
|
//{
|
|
// setText();
|
|
//}
|
|
|
|
//private void setText()
|
|
//{
|
|
// Name.Text = string.Format("Pippo: {0}, età {1}", sex.SelectedValue, age.SelectedValue);
|
|
//}
|
|
|
|
//protected void age_SelectedIndexChanged(object sender, EventArgs e)
|
|
//{
|
|
// setText();
|
|
//}
|
|
}
|
|
} |