I'm trying to pass information set in a celphone applications Form and pass it to an ASP.Net web page.
The idea is that the parameters will be passed through GET and my app will save it to a database.
How can I achieve this if hypothetically my asp.net site is: www.mysite.com/save.aspx
Here's what I have so far:
public void GuardarInfraccion(){
Infraccion infraccion = new Infraccion();
infraccion.IDPolicia = txtUsuario.getString();
infraccion.PlacaAuto = txtPlaca.getString();
infraccion.Nombre = txtNombre.getString();
infraccion.Carnet = txtCarnet.getString();
infraccion.Fecha = txtFecha.getString();
infraccion.TipoInfraccion = String.valueOf(tipoInfraccion.getSelectedIndex());
}
Thank you very much for your time guys. :)