473,785 Members | 2,321 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Could not open in Design view. Quote Values differently inside a '<%... "value" ...%>' block.

I know the typical fix for this problem, but I am not sure how to fix
this line:

<a
href="javascrip t:poptastic('../WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>

Jul 24 '06 #1
5 1859
Problem is that you have double quotes around MESSAGE_ID which conflict with
opening double quotes for href=.

<df********@hot mail.comwrote in message
news:11******** **************@ 75g2000cwc.goog legroups.com...
>I know the typical fix for this problem, but I am not sure how to fix
this line:

<a
href="javascrip t:poptastic('../WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>

Jul 24 '06 #2
Not sure how to fix that?
Winista wrote:
Problem is that you have double quotes around MESSAGE_ID which conflict with
opening double quotes for href=.

<df********@hot mail.comwrote in message
news:11******** **************@ 75g2000cwc.goog legroups.com...
I know the typical fix for this problem, but I am not sure how to fix
this line:

<a
href="javascrip t:poptastic('../WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>
Jul 24 '06 #3
Use single quotes?

df********@hotm ail.com wrote:
Not sure how to fix that?
Winista wrote:
>Problem is that you have double quotes around MESSAGE_ID which conflict with
opening double quotes for href=.

<df********@ho tmail.comwrote in message
news:11******* *************** @75g2000cwc.goo glegroups.com.. .
>>I know the typical fix for this problem, but I am not sure how to fix
this line:

<a
href="javascr ipt:poptastic(' ../WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>
Jul 24 '06 #4
Yes. I am not sure where to put the single quote??

Ray Booysen wrote:
Use single quotes?

df********@hotm ail.com wrote:
Not sure how to fix that?
Winista wrote:
Problem is that you have double quotes around MESSAGE_ID which conflict with
opening double quotes for href=.

<df********@hot mail.comwrote in message
news:11******** **************@ 75g2000cwc.goog legroups.com...
I know the typical fix for this problem, but I am not sure how to fix
this line:

<a
href="javascri pt:poptastic('. ./WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>
Jul 24 '06 #5
Around the Message_ID as Winista said?

df********@hotm ail.com wrote:
Yes. I am not sure where to put the single quote??

Ray Booysen wrote:
>Use single quotes?

df********@hotm ail.com wrote:
>>Not sure how to fix that?
Winista wrote:
Problem is that you have double quotes around MESSAGE_ID which conflict with
opening double quotes for href=.

<df********@ hotmail.comwrot e in message
news:11***** *************** **@75g2000cwc.g ooglegroups.com ...
I know the typical fix for this problem, but I am not sure how to fix
this line:
>
<a
href="javas cript:poptastic ('../WebPages/AdminViewAdminM essages.aspx?Me ssageId=<%#Data Binder.Eval(Con tainer.DataItem ,"MESSAGE_ID")% >')"><%#DataBin der.Eval(Contai ner.DataItem,"S UBJECT")%></a>
>
Jul 25 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1863
by: Dave | last post by:
Hi everyone, (I already posted this to the VS.NET IDE news group without any responses, so I'm attempting one more time in this group) The issue I'm having is occuring in the IDE of VS.NET 2003, although I'm not sure what is actually causing the problem. I can't summarize the issue, so please read on to find out more. I've created a BaseDialogEditor class that allows a developer (namely me) to create Modal editors for controls at...
3
2744
by: ahaque38 | last post by:
Hello. Using A2K SP3, I am having the following problem with a report using "Sorting and Grouping". I have recently added a grouping in the reports for "Category2<>'CONTRACTS'". I have reports at the plan (overall totals), department and division levels which have sorting and grouping implemented with this new
4
3891
by: Edward Diener | last post by:
I really do not understand the difference between the <summary> and <value> XML document tags for a property. Why would one use one as opposed to the other for a property, and when would one use both ?
2
6859
by: andrew007 | last post by:
I do xml / xslt transformation using asp.net but I found any value (w/xml format) in xml node html-encoded to &lt and &gt format if it's > or < tag. Since I have sub xml data in a parent xml node as a value. Check out the following problem. I want to convert the value in <WpDatesXml> node to have a valid "<" and ">" instead of &lt or &gt format so that I can use this xml for another use. Please help! <NewDataSet> <Table1>
13
1562
by: Jim in Arizona | last post by:
I made a page with a gridview that has rows show a different color if a number in a column is greater than or equal to 45. I also did this conditional formatting for the column next to it. Here's my code. in the aspx file =============================== <asp:GridView ID="gvData" runat="server" OnRowDataBound="doColor"> =============================== in the aspx.vb file
2
13702
by: riceyeh | last post by:
Hi, What does <xsl:if test="not($values)"mean? What I do not understand is $values? Here, means array? And . = $value means current node is equal to the variable value? So the total meaning is "if not exists of value in array of values" ? But the result of '. = $value' is a boolean value, so '$values' should not mean "the value in values". Rice
7
2775
by: Jim in Arizona | last post by:
Using this: <asp:ListItem Value="0"</asp:ListItem> as long as I have a value listed and leave the area between the tags blank, when viewed the DropDownList will show a 0 as a choice. I want it to be blank. I've tried doing this: <asp:ListItem Value="0">&nbsp;</asp:ListItem>
21
2419
by: Steven T. Hatton | last post by:
I'm trying to improve my formal understanding of C++. One significant part of that effort involves clarifying my understanding of the vocabulary used to describe the language. This is from the C++ Standard: "" "...sequence of operators and operands that specifies a computation...". That means to me that an expression can be "executed". I am purposely
1
14036
by: ChollaPete | last post by:
This code: <form action="processScan.php" method="get"> <p> <?php print "Scan name: <input type=\"file\" name=\"tScanFileName\" value= \"{$scanFileName}\"><br>"; addHiddenCarryons(); ?> <input type="submit">
0
9489
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10162
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10100
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9959
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8988
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7509
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5528
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4061
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3665
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.