ciaocodice:<script runat="server"> sub Page_load If Request.QueryString("x")<>Nothing Then Response.Write("Prima della modifica:" & img1.Width) Response.Write(" ") img1.Width = Math.Round(img1.Width + Request.QueryString("x")) Response.Write("Dopo la modifica:" & img1.Width) End If End Sub </script>
![]()

<script runat="server">
sub Page_load
If Request.QueryString("x")<>Nothing Then
Response.Write("Prima della modifica:" & img1.Width)
Response.Write("
")
img1.Width = Math.Round(img1.Width + Request.QueryString("x"))
Response.Write("Dopo la modifica:" & img1.Width)
End If
End Sub
</script>
Rispondi quotando