PROGRAM TO CREATE A LINK TO ANOTHER WEB PAGE(using redirect method)

DEFAULT.ASPX.FILE:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>      
        <asp:LinkButton ID="linkbutton2" runat ="server">Redirect Page</asp:LinkButton>
        </div>
    </form>
</body>

</html>

DEFAULT.ASPX.VB FILE:

Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub linkbutton2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles linkbutton2.Click
        Response.Redirect("http://www.w3schools.com")
    End Sub

End Class


No comments:

Post a Comment