ASP Repeater で並べ替えを設定しようとしています。私のリピーターコードを見てください:
<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;
}
それで、どうやってそれを呼び出すことができるか分かりますか?またはリピーターから直接、このサーバー側関数を呼び出すことができます..ありがとう