Archive for ASP.Net
Debugging ASP,JavaScript,VBScript in IE & Firefox
Posted by: | CommentsDuring development debugging plays an important role as it reduces our development efforts in fixing the bugs.In this article we will describe some of the techniques to help you with debugging the ASP, JavaScript,VBScript in Internet explorer and Firefox.
Why Response.Write does not work with ‘Atlas’ Update Panel ?
Posted by: | CommentsHave you ever tried using Response.Write in combination with ‘Atlas’ Update panel? If not try using that. I am sure that it does not work. It’s always irritating when you get to know that basic things like Response.write, Response.buffer etc don’t work with the Powerful tool like Update Panel. In this article i will try to explain you why Response.Write does not work with Atlas Update Panel and more of alternative solution to come over this problem.
How to Call a ASP.NET Web Service from ASP page
Posted by: | CommentsAfter the big success of ASP.NET every body is migrating their ASP application into .Net. But for large ASP applications it’s always difficult to go at one shot , so tendency will be to develop some part of the application first and then go to next part. When you have a web application with mixed technologies like .Net & Asp, it’s always important to share resources between both the technologies like using DOM objects in ASP.net & web services in ASP. But does sharing of these resources quite easy ?
I should say No, In this article i will explain the ways to call ASP.Net Web service.
How to handle PageRequestManager ParserError Exception?
Posted by: | CommentsRecently i was developing some AJAX enabled web page ( aspx) having update panel in it, almost entire development has been finished. Suddenly i got this following error.
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ‘<HTML><HEAD><TITLE><’.
So it’s always difficult to find fix to these type of errors, But some how i managed at the right time. so thought of sharing the solution & the way how i moved towards solution.