No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
Hi, Can any one suggest the method to delete bulk records upto 1 lakh without specifying any condition? There's no Id to be specified in checking in the where condition. Please suggest an idea . Thanks In advance
I exported a crystal report to PDF.It's working normally in all browsers except Google chrome.Can anyone suggests any code to make it compatible with all browsers?The code i used to export is shown below [CODE] System.IO.FileStream fs = null; long FileSize = 0; DiskFileDestinationOptions oDest = new DiskFileDestinationOptions(); string ExportFileName …
I am using crystal report of VS 2008. I want to open a crystal report in PDF even when it is loaded with out showing the crystal report . I also not want to show the save dialog box while opening in PDF. With code below the report is opening …
In the bound field include useid and hide it, and In the row command event just write the following code.. [CODE] protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { int index = Convert.ToInt32(e.CommandArgument); int UserId = 0; UserId = Convert.ToInt32(GridView1.Rows[index].Cells[1].Text.Trim()); } [/CODE] Cells[1] indicate the column no. in which user id …
Hi, I have a web application project which is done in VS2005.I am creating crystal report and i want to export it to pdf on a export button click. But an error is showing as 'Missing Parameter Value. The code i used is shown below:- protected void btnExport_Click(object sender, EventArgs …
I have problem with a PHP application while accessing a local shared file using firefox browser .With IE it works fine.But with firefox it showing security error. I had given a hyper link to access that shared file.Outside the webserver it running well. Any body have solutions please help me:(
Following is the code i used for exporting crystal report on to a pdf file on a buttonclick.The back end used is sqlserver2005 .The problem am facing is the whole records in the database is showing instead of the single record i've been searching for [COLOR="Green"]System.IO.FileStream fs = null; long …
The End.
ranj_s20