17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1473 Views |
-
How to call a function from a control block

4 February 2008 at 11:47pm
Hello,
I have a function in the Page_Controller called A():
function A()
{
return "hello world!!";
}I need to call this function from my page.css. This works ok:
<div class="col-1">
<ul class="navigation">
<li>$A</li>
</ul>
</div>But if I call to A() function from a control block not works!!A() function shows nothing!!
<div class="col-1">
<ul class="navigation">
<% control Menu(1) %>
<li>$A</li>
<% end_control %>
</ul>
</div>why?
Sorry for my bad english and Thanks in advance! -
Re: How to call a function from a control block

5 February 2008 at 8:50am
Did you search the forum ?
| 1473 Views | ||
|
Page:
1
|
Go to Top |


