我希望在 ASP 中继器上设置排序。查看我的中继器代码:
<asp:Repeater runat="server" ID="RptClientDetails">
<HeaderTemplate>
<table id="example" class="dynamicTable table table-striped table-bordered table-primary">
<thead>
<tr>
<th>
<a href="#" onclick="ClientSort('ClientID')">Client ID</a>
</th>
<th>
<a href="#" onclick="ClientSort('Name')">Name</a>
</th>
<th>
<a href="#" onclick="ClientSort('TotalBalanceDue')">Total Balance Due</a>
</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
在这里,我正在调用 javascript 函数。查看我的javascript函数代码:
function ClientSort(SortExpress) {
<%= Sorting(SortExpress) %>
}
从这里我想调用我的 .net 服务器端函数。
public void Sorting(string SortExpression)
{
string s = SortExpression;
}
所以,你知道我怎么称呼它吗?或者直接从中继器我可以调用这个服务器端函数..谢谢