Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/02/2013, 09:07
maialenlopez
 
Fecha de Ingreso: abril-2012
Mensajes: 449
Antigüedad: 12 años, 9 meses
Puntos: 7
Respuesta: Ventana emergente vb.net

Ya he encontrado solución yo misma. Gracias de todos formas a todos. Pongo aquí el resultado por si a alguien le sirve.

Código vb.net:
Ver original
  1. Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  2.         ALERTA()
  3.     End Sub
  4.  
  5.     Private Sub ALERTA()
  6.         Dim numHoja As Integer
  7.         Dim tipoHoja, tipo As String
  8.  
  9.         tipo = Request.QueryString("tipo")
  10.         numHoja = Request.QueryString("identificador")
  11.  
  12.         tipoHoja = tipo & numHoja
  13.  
  14.         Dim alertone As String = "<script language='JavaScript' type='text/javascript'>" & _
  15.                                     "alert('Nº de hoja: ' + '" & tipoHoja & "' + ' -----  Nº de validación: ');" & _
  16.                                 "<" & "/script>"
  17.  
  18.  
  19.         Page.RegisterStartupScript("Alertone", alertone)
  20.     End Sub

__________________
Gracias por todo;

Un saludo