Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
Thanks, Walt Not an ideal solution in a non-"Strict" environment..but I'm using "Option Strict On" here..so that helps a lot :-) Merak > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf Of Walt Ritscher > Sent: 12 April 2002 01:31 > To: [EMAIL PROTECTE

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
] > Subject: Re: [DOTNET] and databinding funkiness > > the problem is "\" in your concatination > > try @"\" > > -Original Message- > From: Deepak Rao [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 11, 2002 6:09 PM > To: [EMAIL PROTECTED] &g

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Stacey Piscatella
the problem is "\" in your concatination try @"\" -Original Message- From: Deepak Rao [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 6:09 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness It doesn't work either. The tag loo

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Dean Cleaver
Hmmm - perhaps change the "\" for "\\"? Dino -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak Rao Sent: Friday, 12 April 2002 13:09 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness It doesn't w

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Peter Stephens
There might be an issue with "\". You must escape a backslash. Try "\\" or @"\" -- Peter > You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Walt Ritscher
4:42 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness You can try NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "Uri") & "\" & DataBinder.Eval(Container.DataItem, FileName") %>' But then you sometimes get problems w

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] and databinding funkiness > > Then try add a ; just before the last %>' > > Dino > > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Deepak Rao > Sent: Friday, 12 April 2002

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Dean Cleaver
Then try add a ; just before the last %>' Dino -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Deepak Rao Sent: Friday, 12 April 2002 12:53 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] and databinding funkiness Heh...same error > --

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
Heh...same error > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Chris Anderson > Sent: Thursday, April 11, 2002 8:27 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] and databinding funkiness > > Ahh..you're us

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
> Chris Anderson > > Sent: Thursday, April 11, 2002 7:42 PM > > To: [EMAIL PROTECTED] > > Subject: Re: [DOTNET] and databinding funkiness > > > > You can try > > > > NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "Uri") & &quo

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
Hmmm...I tried your suggestion and I got a compile error CS1002: ; expected > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of > Chris Anderson > Sent: Thursday, April 11, 2002 7:42 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET

Re: [DOTNET] and databinding funkiness

2002-04-11 Thread Chris Anderson
You can try NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "Uri") & "\" & DataBinder.Eval(Container.DataItem, FileName") %>' But then you sometimes get problems with the ampersands being converted to & !! Merak > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTEC

[DOTNET] and databinding funkiness

2002-04-11 Thread Deepak Rao
I am not able to do this I get a compile error about preprocessor directives. Does anybody know how I can concatenate two databound values in the NavigateUrl property of a HyperLink control? Any help is appreciated. Thanks Deepak You can read messages from the DOTNET archive, unsubscribe fr