I had my project working last night. When I tried to open it this morning, it wouldn't show me design for one of the pages. Complains something like this:
Could not open in design view. Place quotes around a '<% %>' block used as an attribute value or within a <SELECT> element
Here is my HTML and script page:
<%@Register tagprefix="FSA" TagName="NavigationBar2" src="NavigationBar2.ascx" %>
<%@ Page Language="
vb" AutoEventWireup="false" Codebehind="frmLMCAssignments.aspx.
vb" Inherits="FSA_1._1.frmLMCAssignments" debug="true"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
.
.
<body
<form
<table
<tr
<td
<asp:datagrid
<columns>
<asp:TemplateColumn HeaderText = "Assigned">
<ItemTemplate>
<asp:CheckBox ID = "cbAssigned" Runat = "server"
Checked = <%#DataBinder.Eval(Container.DataItem,"IsAssigned" )%>
Enabled = False />
</ItemTemplate>
</asp:TemplateColumn>
/td>
/tr>
/table>
/form>
/body>
These are the only places where I'm using '<% %>' blocks.
Will appreciate any help.
.
</HTML>