Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Professional For advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 24th, 2006, 01:27 PM
Authorized User
 
Join Date: Jun 2005
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts
Default cannot view the design of the .aspx page

I have a datagrid column which goes as -

<asp:TemplateColumn HeaderText="New Inquiry Type">
    <ItemTemplate>
        <asp:Hyperlink ID="hplnkInquiryType" Runat="Server" text=<%#DataBinder.Eval(Container.DataItem,"invest or name").ToString()%>>
        </asp:Hyperlink>
    </ItemTemplate>
</asp:TemplateColumn>

when i try to view the page in the design mode i get this error --

Could not open in Design View . Place quotes around a '<% %>' block used as an attribute value or within a <SELECT> element.

it works when i wrap the text attribute within 2 single quotes -
<asp:TemplateColumn HeaderText="New Inquiry Type">
    <ItemTemplate>
        <asp:Hyperlink ID="hplnkInquiryType" Runat="Server" text='<%#DataBinder.Eval(Container.DataItem,"inves tor name").ToString()%>>'
        </asp:Hyperlink>
    </ItemTemplate>
</asp:TemplateColumn>

but then the Hyperlink on the datagrid throws an error when clicked as - <some investor name> undefined
i.e. coz it needs the investor_name to be wrapped around single quotes.
thus the hyperlink works with the following code but no design view --
<asp:TemplateColumn HeaderText="New Inquiry Type">
    <ItemTemplate>
        <asp:Hyperlink ID="hplnkInquiryType" Runat="Server" text="'" + <%#DataBinder.Eval(Container.DataItem,"investor name").ToString() + "'" %>>
        </asp:Hyperlink>
    </ItemTemplate>
</asp:TemplateColumn>

 
Old October 24th, 2006, 01:31 PM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Try this:

<asp:Hyperlink ID="hplnkInquiryType" Runat="Server" text='<%# Container.DataItem("Investor Name")%>' />

-------------------------
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.

^^Thats my signature





Similar Threads
Thread Thread Starter Forum Replies Last Post
View source of .aspx page not being displayed nitinp ASP.NET 2.0 Basics 5 November 7th, 2006 06:55 AM
Blank Design View ??? smuger Dreamweaver (all versions) 4 October 11th, 2004 04:40 PM
how to enable the design view yylee Access VBA 2 October 4th, 2004 02:23 PM
Displaying roles.aspx in design view nigelhamilton BOOK: ASP.NET Website Programming Problem-Design-Solution 6 September 3rd, 2004 09:23 AM
Could not open in design view!! texasraven ASP.NET 1.x and 2.0 Application Design 4 March 17th, 2004 03:22 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.