Click here to Skip to main content
15,906,341 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
i am using a javaScript Function to preview report but now i want to Sort Crystal report is this possible ? i am using following function for showing report

<script language="javascript">
function print_Click()
{
window.open("rptviewer.aspx?rptname=RollNumber","atif","status=0,toolbar=0,menubar=0,location=0,scrollbars=1");
}
 </script>

and here is asp.net button code
ASP.NET
<asp:button id="btnprv" runat="server" text="رپورٹ دہکھیں" width="90px" backcolor="SteelBlue" forecolor="White" OnClientClick="print_Click();"/>
Posted
Updated 8-Mar-14 4:02am
v2

1 solution

The report is built in server side, so I think you can't.
But in server side, you can do that with Standard Report Expert, like this :
http://www.c-sharpcorner.com/UploadFile/mahesh/DisplaySortedDataInCR11082005041819AM/DisplaySortedDataInCR.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900