Hi All, This is my code HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(sCRURL); request.UserAgent = "Gantec Web Crawler"; WebResponse response = request.GetResponse(); Stream stream = response.GetResponseStream(); StreamReader reader = new StreamReader(stream); sCreditReport = reader.ReadToEnd(); reader.Close(); I am getting the following error occasionally not all the times please advise how to solve this problem System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.IO.IOException: The decryption operation failed, see inner exception. ---> System.ComponentModel.Win32Exception: The message or signature supplied for verification has been altered --- End of inner exception stack trace --- at System.Net.ConnectStream.Read(Byte[] buffer, Int32 offset, Int32 size) at System.IO.StreamReader.ReadBuffer() at System.IO.StreamReader.ReadToEnd() at CreditBuilder.PresentationLayer.credit_report.GetCreditReport() at CreditBuilder.PresentationLayer.credit_report.Page_Load(Object sender, EventArgs e) at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) --- End of inner exception stack trace --- at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.credit_report_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Thanks Warm Regards Prakash-B
PrakashBhaskar
Posts
-
System.IO.IOException: The decryption operation failed, see inner exception -
Installer/setup file should support for single machineI have saw some software CD's that can be used in only one PC. If that CD is used in one machine you cannot use that CD in another machine. I heared that they have used embedded systems. I did not find any clue please advice
Thanks Warm Regards Prakash-B
-
Installer/setup file should support for single machineIs it possible to create a installer/setup file and make it as a CD and we should use this CD in one PC. If that CD is already used in particular PC and that CD should not support other PC. Is this possible.
Thanks Warm Regards Prakash-B
-
Restore backup from sql server 2005 to 2000Hi, I have database backup from sql server 2005, i want to restore that backup file to sql server 2000. I have tried attach database and restore database but i am not able to do that. Is there any way to achieve this? please help me.
Thanks Warm Regards Prakash-B
-
CreditXpert webservices using c#.netI can able to asign values most of the function except choice element in XSD
Thanks Warm Regards Prakash-B
-
edit and update .resx filei have develped an application which supports three language spanish, english and french. i have used resource file to achieve this task. My problem is, i am having a web form which contains three label box first name, last name and middle name in resource file i have set the value for all the languages, is it possible to update resource programatically coz the client wants all the fields should be editable & correspondin value should be reflect at the resource file.
Thanks Warm Regards Prakash-B
-
Unmatched records from DataTableswhy dont u use filters
Thanks Warm Regards Prakash-B
-
I need to get the TEXT property of the HyperLink controli do think so coz sometime "DataList1.FindControl("Hyperlink1");" this may return null value if there is no control found. Keep a break point and check wheather your code is returning any controls or not.
Thanks Warm Regards Prakash-B
-
I need to get the TEXT property of the HyperLink controlyou can get the text of hyperlink directly like --> HyperLink1.Text
Thanks Warm Regards Prakash-B
-
how to write queryi am sorry i have mis-understood the question
Thanks Warm Regards Prakash-B
-
how to write queryfor this you have to use corolated queries following the example SELECT sno, name, desc FROM WHERE sno=(SELECT MAX(sno) FROM
Thanks Warm Regards Prakash-B
-
How to set calender control default year when it loadedCalendar1.VisibleDate = New DateTime(year, month, day) following is example Calendar1.VisibleDate = New DateTime(1983, 10, 23) i think ur problem has solved
Thanks Warm Regards Prakash-B
-
restrict open multiple times on same applicationThanks for your flying reply its working for me
Thanks Warm Regards Prakash-B
-
restrict open multiple times on same applicationThanks for your flying reply its working for me
Thanks Warm Regards Prakash-B
-
restrict open multiple times on same applicationHi, I have created a windows application using VB.NET its working fine there is no issue on that applicaiton. My problem is i want to restrict multiple times of running the same application. for example if i click and run the exe file it will open the application again click on the same exe file it will open the same application second time. I want to restrict that if u click on the exe n time it should open one not many. is it possible if so can u plz guide me how to do that.
Thanks Warm Regards Prakash-B
-
Drop down list not displaying itemsu have to specify the datasource, do databind, specify datavalue and datatext field ddlist.DataSource = dataset1.Tables(0) ddlist.DataBind() ddlist.DataValueField = "column name" ddlist.DataTextField = "column name"
Thanks Warm Regards Prakash-B
-
Sending MailThe below code should work else you your mail will be put in queue/badmail folder under the inetpub/mail eMail = new MailMessage(); eMail.BodyFormat = MailFormat.Text; eMail.From = _SendFrom; eMail.Fields[http://schemas.microsoft.com/cdo/configuration/smtsperver\] = "SMTPServerName"; eMail.Fields[ "http://schemas.microsoft.com/cdo/configuration/smtpserverport"] = 25; eMail.Fields[ "http://schemas.microsoft.com/cdo/configuration/sendusing"] = 2; if (SMTPUser != null && SMTPPassword != null) { eMail.Fields[ "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1; eMail.Fields[ "http://schemas.microsoft.com/cdo/configuration/sendusername"] = "mailid@yourdomain.com"; eMail.Fields[ "http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "your account password"; } eMail.To = "recipients"; SmtpMail.SmtpServer = SMTPServerName; SmtpMail.Send(eMail); //
Thanks Warm Regards Prakash-B
-
problem in xsd file Error is : The same table (tradeId) cannot be the child table in two nested relations. [modified]i was trying to generate a typed dataset using cmd prompt c:\xsd /d c:\xm\test.xsd c:\c:\xml\teset.xsd but i was throwed the following error The same table (tradeId) cannot be the child table in two nested relations. plz help me to solve this problem -- modified at 7:55 Tuesday 3rd July, 2007
Thanks Warm Regards Prakash-B
-
How to get list of tables in SQL Serverselect * from sysobjects select * from syscolumns
Thanks Warm Regards Prakash-B
-
Database Problem....this occur may be you deleted some records for example you 10 rows that has auto generated column you have deleted the i & 10 th record and if you insert the new row the autogenerated column will take 11 as the new record coz of built-in storedprocedure will do this. you have to drop and recreate you table to solve this problem
Thanks Warm Regards Prakash-B