i have a problem

M

Matthias Roeder

Hi,

what is wrong on this code i really don't understand,
why this is not running.

<%@ Page Language="VB" %>
<script runat="server">

Sub Page_Load(sender As Object, e As EventArgs)
Dim merchant AS string
merchant= Request.Form("merchant")

End Sub

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="merchant" runat="server"
font-size="Large"></asp:Label>
</form>
</body>
</html>
 
M

Matthias Roeder

Matthias said:
Hi,

what is wrong on this code i really don't understand,
why this is not running.

<%@ Page Language="VB" %>
<script runat="server">

Sub Page_Load(sender As Object, e As EventArgs)
Dim merchant AS string
merchant= Request.Form("merchant")

End Sub

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="merchant" runat="server"
font-size="Large"></asp:Label>
</form>
</body>
</html>
thanx I got it myself
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top