protected string myfunction() {
return "abc";
}
In on of my page, I can show the "abc" in the webpage by using <%# myfunction() %>. But In other page, It doesn't work, but work by using <%=myfunction(); %>.
Why and what is the different?
Thanks a lot!!