Hi mayu3491,
I have created sample code which fullfill your requirement.
HTML
<div>
<asp:Button ID="btnSubmit" Text="Submit" runat="server" Style="height: 26px" />
</div>
Vb.net
Imports System.Windows.Forms
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub btnSubmit_Click(sender As Object, e As System.EventArgs) Handles btnSubmit.Click
Dim result As DialogResult = MessageBox.Show("Jig tool succussfully registered. Do you want to continue register jigtool? .", "Confirmation", MessageBoxButtons.YesNo)
If result = DialogResult.Yes Then
Response.Redirect("regJig.aspx")
ElseIf result = DialogResult.No Then
Response.Redirect("home.aspx")
End If
End Sub
End Class
Screenshot
