我有一个Web表单,在其中传递数据,并通过以下方式将其转换为JSON:
protected void enviarDatos_Click(object sender, EventArgs e)
{
string nombre = txtNombre.Text;
string apellido = txtApellido.Text;
int edad = Convert.ToInt32(txtEdad.Text);
string residencia = txtResidencia.Text;
List<FormularioDatos> datosPersona = new List<FormularioDatos>
{
new FormularioDatos{nombreX=nombre, apellidoX=apellido, edadX=edad, residenciaX=residencia}
};
string datosJSON = JsonConvert.SerializeObject(datosPersona);
}
我有2个问题:
datosJSON
传递到JS
,我知道我可以使用Ajax,但是
我将如何触发该事件?LocalStore
?)