Click here to Skip to main content
15,894,955 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Sync Outlook Calendar with Web Application Pin
guardianhm1-Apr-08 22:05
guardianhm1-Apr-08 22:05 
GeneralProblem with hyperlink Pin
eyeseetee1-Apr-08 5:16
eyeseetee1-Apr-08 5:16 
GeneralRe: Problem with hyperlink Pin
led mike1-Apr-08 5:27
led mike1-Apr-08 5:27 
GeneralRe: Problem with hyperlink Pin
eyeseetee1-Apr-08 5:33
eyeseetee1-Apr-08 5:33 
GeneralRe: Problem with hyperlink Pin
led mike1-Apr-08 5:41
led mike1-Apr-08 5:41 
GeneralRe: Problem with hyperlink Pin
eyeseetee1-Apr-08 5:46
eyeseetee1-Apr-08 5:46 
GeneralRe: Problem with hyperlink Pin
led mike1-Apr-08 6:13
led mike1-Apr-08 6:13 
GeneralRe: Problem with hyperlink Pin
J4amieC1-Apr-08 6:13
J4amieC1-Apr-08 6:13 
This gets a bit convoluted. you cant use " for the attribute and " inside the Eval statement.You also cant use Eval twice like that in a server tag.

Lets hit those 2 things one at a time:

Text="<%# Eval("Value") %>"

must be

Text='<%# Eval("Value") %>'

note the use of ' for the attribute - this allows you to use the " in the Eval statement.

For the other one, you have to evaluate the whole link at runtime so:

NavigateUrl="Page.aspx?qtynewvar=<%# Eval("Value") %>&stringname=<%# Eval("Value") %>&stringname=<%# Eval("Value")%>"

must become:

NavigateUrl='<%# "Page.aspx?qtynewvar=" + Eval("Value") + "&stringname=" + Eval("Value") + "&stringname="+ Eval("Value") %>'

(again, note the use of ' for the attribute)

oh, and I as much as I tell people to use google when they are lazy, IMO this is one of those weirdnesess that you just pick up through experience. However, as always if you google the exact error message you will find the answer!
GeneralRe: Problem with hyperlink Pin
eyeseetee1-Apr-08 21:43
eyeseetee1-Apr-08 21:43 
GeneralRadioButton Width Pin
kontax1-Apr-08 4:51
kontax1-Apr-08 4:51 
GeneralRe: RadioButton Width Pin
Mitch F.1-Apr-08 14:50
Mitch F.1-Apr-08 14:50 
GeneralRe: RadioButton Width Pin
kontax2-Apr-08 0:50
kontax2-Apr-08 0:50 
GeneralRe: RadioButton Width Pin
Mitch F.2-Apr-08 7:32
Mitch F.2-Apr-08 7:32 
GeneralRESX files Pin
Spykraft1-Apr-08 4:42
Spykraft1-Apr-08 4:42 
GeneralRe: RESX files Pin
led mike1-Apr-08 4:49
led mike1-Apr-08 4:49 
GeneralRe: RESX files Pin
Spykraft1-Apr-08 5:05
Spykraft1-Apr-08 5:05 
QuestionPassing Form data to another page Pin
munklefish1-Apr-08 4:27
munklefish1-Apr-08 4:27 
GeneralRe: Passing Form data to another page Pin
Herman<T>.Instance1-Apr-08 4:47
Herman<T>.Instance1-Apr-08 4:47 
GeneralRe: Passing Form data to another page Pin
eyeseetee1-Apr-08 5:00
eyeseetee1-Apr-08 5:00 
GeneralRe: Passing Form data to another page Pin
munklefish1-Apr-08 7:54
munklefish1-Apr-08 7:54 
GeneralRe: Passing Form data to another page Pin
Herman<T>.Instance1-Apr-08 22:49
Herman<T>.Instance1-Apr-08 22:49 
GeneralRe: Passing Form data to another page Pin
ffowler2-Apr-08 16:45
ffowler2-Apr-08 16:45 
GeneralRe: Passing Form data to another page Pin
munklefish1-Apr-08 7:55
munklefish1-Apr-08 7:55 
GeneralRe: Passing Form data to another page Pin
varun.g1-Apr-08 5:06
varun.g1-Apr-08 5:06 
GeneralRe: Passing Form data to another page Pin
munklefish1-Apr-08 7:53
munklefish1-Apr-08 7:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.