I'm maintaining a C# ASP.NET application and I have come across the following little snippet in a .aspx file.
<body>
<form id="form1" runat="server">
.
snip
.
<ComponentArt:DataGrid id="Grid1"
.
snip
.
<ClientTemplates>
<ComponentArt:ClientTemplate Id="DataCellClientTemplate">
## Grid1_GetEditContent(DataItem) ##
</ComponentArt:ClientTemplate>
.
.
.
(The function Grid1_GetEditContent() is defined in the JavaScript at the top of the file.)
I was wondering what the "##" means here? Does it mean the function could be invoked from some activity or other on the screen? (I may have to fiddle with this and I'm trying to detect all the mines without treading on them.)