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 originalProtected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
ALERTA()
End Sub
Private Sub ALERTA()
Dim numHoja As Integer
Dim tipoHoja, tipo As String
tipo = Request.QueryString("tipo")
numHoja = Request.QueryString("identificador")
tipoHoja = tipo & numHoja
Dim alertone As String = "<script language='JavaScript' type='text/javascript'>" & _
"alert('Nº de hoja: ' + '" & tipoHoja & "' + ' ----- Nº de validación: ');" & _
"<" & "/script>"
Page.RegisterStartupScript("Alertone", alertone)
End Sub