Good evening friends Forum
if someone can guide me please
I have a quote entry form (ingresocotizaciones.aspx)
the variables in text boxes code, description price
the other product bring travez of a grid (the page is called busquedaporcodigo.aspx)
ingresocotizaciones form in the page load I have the following code
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
If Session("variable") IsNot Nothing Then
Me.TxtRut.Text = Session("variable").ToString()
Me.TxtProveedor.Text = Session("variable2").ToString()
Me.TxtContacto.Text = Session("variable3").ToString()
Me.TxtDireccion.Text = Session("variable4").ToString()
Me.TxtCiudad.Text = Session("variable5").ToString()
Me.TxtTe ...
Go to the complete details ...