Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Server-Side Control - Embedded Server-Side Code - Inline (http://www.velocityreviews.com/forums/t95047-server-side-control-embedded-server-side-code-inline.html)

Mythran 01-21-2005 05:37 PM

Server-Side Control - Embedded Server-Side Code - Inline
 
<asp:hyperlink ... navigateurl="<%=MyClass.MySharedMethod%>" ...

Anyone know how to do something similar to the above?

Thanks,
Mythran



Jakub 01-21-2005 06:15 PM

Re: Server-Side Control - Embedded Server-Side Code - Inline
 
MyHyperlink.NavigateUrl = MyClass.MySharedMethod;

in code behind, Page_Load for example

(you cannot use webcontrols together with "Response.Write")

"Mythran" <kip_potter@hotmail.comREMOVETRAIL> wrote in message
news:#VYaS$9$EHA.2032@tk2msftngp13.phx.gbl...
> <asp:hyperlink ... navigateurl="<%=MyClass.MySharedMethod%>" ...
>
> Anyone know how to do something similar to the above?
>
> Thanks,
> Mythran
>
>




Mythran 01-22-2005 01:02 AM

Re: Server-Side Control - Embedded Server-Side Code - Inline
 

"Jakub" <jakub_b@centrum.cz> wrote in message
news:emCdmU%23$EHA.4092@TK2MSFTNGP09.phx.gbl...
> MyHyperlink.NavigateUrl = MyClass.MySharedMethod;
>
> in code behind, Page_Load for example
>
> (you cannot use webcontrols together with "Response.Write")
>
> "Mythran" <kip_potter@hotmail.comREMOVETRAIL> wrote in message
> news:#VYaS$9$EHA.2032@tk2msftngp13.phx.gbl...
>> <asp:hyperlink ... navigateurl="<%=MyClass.MySharedMethod%>" ...
>>
>> Anyone know how to do something similar to the above?
>>
>> Thanks,
>> Mythran
>>
>>

>
>


Umm, yeah, I know about the code behind...

I was talking about webcontrols and response.write inline, and the rest of
yer message answered that ;)

Thanks,
Mythran




All times are GMT. The time now is 02:26 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57