Envió de datos x URL en ASP.NET:
URL: response.redirect ("Default2.aspx?materias="&DDL.selectedItem.text)
------------------------
ejemplo en C#
namespace SmartDeviceProject1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//Declaración de variables
double a, result;
string op;
private void Form1_Load(object sender, EventArgs e)
{
}
private void btnCalcular_Click(object sender, EventArgs e)
{
a = Convert.ToDouble(txtCantidad.Text);
op = comboBox1.SelectedItem.ToString();
if (a >= 100)
switch (op)
{
case "A":
result = a - (a * 0.15);
break;
case "B":
result = a - (a * 0.35);
break;
}
txtResultado.Text = result.ToString();
}
}
}
Saludos
No hay comentarios:
Publicar un comentario