Does Padarn support the call to methods that exist in the Code Behind from the ASPX page?
For example (pseudo):
MyPage.cs Code Behind.
protected string GetData()
{
return("Here's the data");
}
MyPage.aspx calls the GetData() method that lives in its code behind...
<%= this.GetData() %>
When I attempt something like the above example, the response that is displayed in the browser is reads...
[translated asp]
instead of "Here's the data".
For the record, ctacke answered this question in a cross-post thread at OpenNETCF Community forum...