A
AAaron123
I'm having a problem getting
onclick="window.location.href...
to open a page.
The aspx file contains both the XHTML andthe VB script.
The file begins as follows:
<%@ Page Language="VB" MasterPageFile="~/Main.master" Title="Untitled Page"
AutoEventWireup="false" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
If Not IsPostBack Then
....
I put a break point on the If but it never gets there.
Now I'm wondering if breakpoints work when the code behind is included in
the aspx file rather than in a aspx.vb file.
Do they?
Thanks
onclick="window.location.href...
to open a page.
The aspx file contains both the XHTML andthe VB script.
The file begins as follows:
<%@ Page Language="VB" MasterPageFile="~/Main.master" Title="Untitled Page"
AutoEventWireup="false" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
If Not IsPostBack Then
....
I put a break point on the If but it never gets there.
Now I'm wondering if breakpoints work when the code behind is included in
the aspx file rather than in a aspx.vb file.
Do they?
Thanks