Alternative SSRS Front-ends

Given that Sql Server Reporting Services is designed to be open and extendable, and that the bundled Report Manager isn’t that great, are there any alternative open-source SSRS Front-ends out there? By ‘front-ends’ I guess I mean web apps that can display the available reports on the reports server, gather the required parameters (hopefully in … Read more

How to call a asp:Button OnClick event using JavaScript?

I have a question, I have a button like below: <asp:Button ID="savebtn" runat="server" OnClick="savebtn_Click" Visible="false" /> I then have HTML button like like below: <button id="btnsave" onclick="fncsave">Save</button> I have the javascript below: <script type="text/javascript"> function fncsave() { document.getElementById('<%= savebtn.OnClick %>').click() } </script> My question now is, how can I call the asp:Button OnClick from the … Read more

Upload,Save and Retrieve Image from database by using their Id in Code First Method

from last 10 days I am trying many ways/example/tutorials which are provide in net to solve my problems. But, for all of those cases I fail down. I want to upload images for specific/multiple products, save them in database and display them in Home page by calling their ID. Can anyone give me step by step example/tutorials/link for this. Please don’t give an partial answer/suggestion. Because I am already bore about those.