or
<
telerik:RadPanelItem
runat
=
"server"
Font-Bold
=
"True"
ForeColor
=
"White"
NavigateUrl="https://site.com/app/default.asp?
M
=
2
-3&u=<%= uUser_id%>"
Text="Event Application">
</
telerik:RadPanelItem
>
Trying to pass the current user ID but I pass:
https://site.com/app/default.asp?M=2-3&u=<;%= uUser_id%>
instead of:
Any ideas?
ASP programer learning ASPX
.....
Private
Function
CreateRadDock(
ByVal
ItemType
As
Integer
,
ByVal
itemid
As
Integer
,
ByVal
DashItemId
As
Integer
,
ByVal
row
As
Integer
,
ByVal
title
As
String
)
As
Telerik.Web.UI.RadDock
Dim
Placeholder
As
New
PlaceHolder
Dim
dock
As
New
RadDock()
dock.DockMode = DockMode.Docked
dock.ID = DashItemId.ToString
dock.Title = title
dock.Width = Unit.Percentage(100)
dock.Height = Unit.Pixel(335)
dock.AutoPostBack =
True
Dim
titleBarTemplate =
New
DockTitleTemplate
..... etc
Class
DockTitleTemplate
Implements
ITemplate
Public
Sub
InstantiateIn(
ByVal
container
As
Control)
Implements
ITemplate.InstantiateIn
Dim
link1
As
New
HyperLink()
link1.ID =
"link1"
link1.Text =
"my linke text"
link1.NavigateUrl =
"#"
container.Controls.Add(link1)
End
Sub
End
Class