我的场景是这样的:
下面是我的领域对象,有一个方法:LoadList,最后一个参数ReplyType是一个枚举值(public enum ReplyType : int):
public static IList<UserRefer> LoadList(int startRow, int maxRows, ReplyType replyType)
{ // }
<asp:ObjectDataSource runat="server" ID="src"
StartRowIndexParameterName="startRow"
MaximumRowsParameterName="maxRows">
<SelectParameters>
<asp:Parameter Name="replyType" Type="???" DefaultValue="0" />
</SelectParameters>
</asp:ObjectDataSource>
你给ReplyType定义是用的什么类型,就可以用什么类型啊
System.Int32 试试~