<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4076745707884121351</id><updated>2011-11-27T15:41:50.126-08:00</updated><category term='asp'/><category term='Error'/><category term='asp errors'/><category term='ASP.NET'/><category term='SQL Server'/><title type='text'>Errors</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-1588122594571281287</id><published>2008-10-23T09:32:00.000-07:00</published><updated>2008-10-23T09:42:14.425-07:00</updated><title type='text'>give full details of this ORA-12988: cannot drop column</title><content type='html'>&lt;pre&gt;give full details of this ORA-12988: cannot drop column&lt;br /&gt;from table owned by SYS&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-1588122594571281287?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/1588122594571281287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=1588122594571281287' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1588122594571281287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1588122594571281287'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/10/give-full-details-of-this-ora-12988.html' title='give full details of this ORA-12988: cannot drop column'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-5180561450576771275</id><published>2008-09-29T18:24:00.000-07:00</published><updated>2008-09-29T18:30:46.911-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp errors'/><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>How do I increase timeout values?</title><content type='html'>How do I increase timeout values?&lt;br /&gt;&lt;br /&gt;tag          Server.ScriptTimeout = 180    &lt;br /&gt;&lt;br /&gt;To change this value for an entire application, open Internet Services Manager, go to the Home Directory tab of the application, click on configuration, and alter the ASP Script timeout field on the "App Options" tab. If you do not have access to the web server directly, you can also use ADSI to change this value on a per-application basis. Keep in mind that with this method you can only override the default with a value GREATER than that stored in the metabase - if you try to lower the current value, the change will not take effect.&lt;br /&gt;&lt;br /&gt;The minimum value for ScriptTimeout is 0 (which means never time out). If you try to set it to a negative number (-1 is a common pitfall; it is often associated with "infinite"), you will get the following:&lt;br /&gt;&lt;br /&gt;error '80004005' &lt;br /&gt;Unspecified error&lt;br /&gt;&lt;br /&gt;The maximum value for ScriptTimeout is 2^32-1, or 2147483647. If you try to set it to 2147483648 or higher, you will get the following error:&lt;br /&gt;&lt;br /&gt;Microsoft VBScript runtime (0x800A0006)&lt;br /&gt;Overflow: 'server.scripttimeout'&lt;br /&gt;&lt;br /&gt;If you need this much time, you need to investigate your script, because it must be horribly inefficient. And no user (or even browser) will ever wait that long for a page to render.&lt;br /&gt;&lt;br /&gt;Session.Timeout&lt;br /&gt;&lt;br /&gt;This setting controls how long, in minutes, a user's session will last. While it is wise to keep this value short for efficiency's sake, there are cases where that's just not enough time for users to get things done in your application (for example, if you have a client-side tool where the user is changing properties but not making requests to the server until they are done). The default is 20 minutes, and once 20 minutes of inactivity has occured, the session expires and all session variables are lost. You can increase the session timeout in an ASP page or in global.asa's Session_onStart() method with the following code:&lt;br /&gt;&lt;br /&gt;     Session.Timeout = 45 &lt;br /&gt;&lt;br /&gt;To change this value for an entire application, open Internet Services Manager, go to the Home Directory tab of the application, click on configuration, and alter the Session timeout field on the "App Options" tab. This metabase setting is also exposed to ADSI.&lt;br /&gt;&lt;br /&gt;conn.connectionTimeout&lt;br /&gt;&lt;br /&gt;Where conn is an ADODB.Connection object that is not yet open, the connectionTimeout property will indicate the amount of time, in seconds, to wait for an ASP application to initially connect to the data source. The default is 15 seconds; to override the default, use syntax as follows:&lt;br /&gt;&lt;br /&gt;server side&lt;br /&gt;   Set conn = CreateObject("ADODB.Connection")      conn.ConnectionTimeout = 120      conn.Open &lt;connectionstring&gt;&lt;br /&gt;&lt;br /&gt;commandTimeout&lt;br /&gt;&lt;br /&gt;CommandTimeout tells the server how long to wait, in seconds, for completion of any command sent to the data source. This value is editable before and after the connection has been opened. The default is 30 seconds, but you can override it like this:&lt;br /&gt;&lt;br /&gt;server side&lt;br /&gt;  Set conn = CreateObject("ADODB.Connection")      conn.Open &lt;connectionstring&gt;&lt;br /&gt;   conn.CommandTimeout = 120&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Note that you can also apply a commandTimeout value to a command object, and it will behave independent of the commandTimeout value associated with the connection object. So for specific stored procedures or other commands being executed explicitly through the ADODB.Command object, you could have a longer timeout than that of the connection object. The syntax for the command object is almost identical:&lt;br /&gt;&lt;br /&gt;&lt;%      Set cmd = CreateObject("ADODB.Command")      cmd.CommandTimeout = 120  %&gt;&lt;br /&gt;&lt;br /&gt;Note that Oracle drivers do not support the commandTimeout property, up to and including MDAC 2.7. See more information.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://classicasp.aspfaq.com/general/how-do-i-increase-timeout-values.html"&gt;http://classicasp.aspfaq.com/general/how-do-i-increase-timeout-values.html &lt;/a&gt;&lt;br /&gt;&lt;/connectionstring&gt;&lt;/connectionstring&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-5180561450576771275?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/5180561450576771275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=5180561450576771275' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/5180561450576771275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/5180561450576771275'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/how-do-i-increase-timeout-values.html' title='How do I increase timeout values?'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-2849631724167762200</id><published>2008-09-29T18:21:00.000-07:00</published><updated>2008-09-29T18:24:37.504-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp errors'/><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>Why do I get non-database-related 80004005 errors?</title><content type='html'>Why do I get non-database-related 80004005 errors?&lt;br /&gt;&lt;br /&gt;see this article&lt;br /&gt;http://tutorials.aspfaq.com/8000xxxxx-errors/80004005-errors.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-2849631724167762200?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/2849631724167762200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=2849631724167762200' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/2849631724167762200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/2849631724167762200'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/why-do-i-get-non-database-related.html' title='Why do I get non-database-related 80004005 errors?'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-3759778863814412399</id><published>2008-09-29T18:10:00.000-07:00</published><updated>2008-09-29T18:17:21.648-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp errors'/><title type='text'>Response object error 'ASP 0100 : 8007000e'</title><content type='html'>Response object error 'ASP 0100 : 8007000e' &lt;br /&gt;Out of memory&lt;br /&gt;Unable to allocate required memory. &lt;br /&gt;&lt;br /&gt;Have anybody seen this error before, what does it actually mean?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-3759778863814412399?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/3759778863814412399/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=3759778863814412399' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/3759778863814412399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/3759778863814412399'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/response-object-error-asp-0100-8007000e.html' title='Response object error &apos;ASP 0100 : 8007000e&apos;'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-720237185093938929</id><published>2008-09-29T18:09:00.000-07:00</published><updated>2008-09-29T18:10:16.087-07:00</updated><title type='text'>Ajax error if postback huge pages:sys.webforms.pagerequestmanagerservererrorexception error code:12030</title><content type='html'>I use ajax and updatepanel, I have a problem that one page sometimes display an error: sys.webforms.pagerequestmanagerservererrorexception  error code:12030,even I just click an button (the button don't process any thing, just post back),but sometimes it is ok.&lt;br /&gt;&lt;br /&gt;I use httpwatch to check it, found the postback data about 100kb, if I open other same pages with small data than above page, all is ok, if the error come from this? i.e. ajax don't support huge data to postback?&lt;br /&gt;&lt;br /&gt; anyone can tell me why and how to resolve it?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-720237185093938929?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/720237185093938929/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=720237185093938929' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/720237185093938929'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/720237185093938929'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/ajax-error-if-postback-huge.html' title='Ajax error if postback huge pages:sys.webforms.pagerequestmanagerservererrorexception error code:12030'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-1273328395483723079</id><published>2008-09-19T21:10:00.000-07:00</published><updated>2008-09-19T21:12:00.430-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server'/><title type='text'>General network error.</title><content type='html'>&lt;p&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;Microsoft OLE DB Provider for SQL Server&lt;/span&gt; &lt;span style="font-family:Arial;font-size:85%;"&gt;error '80004005'&lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span style="font-family:Arial;font-size:85%;"&gt;[DBNETLIB][ConnectionRead (recv()).]General network error. Check your network documentation.&lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span style="font-family:Arial;font-size:85%;"&gt;/default.asp&lt;/span&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt;, line 107&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Arial;font-size:85%;"&gt; what is this error??&lt;br /&gt;&lt;/span&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-1273328395483723079?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/1273328395483723079/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=1273328395483723079' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1273328395483723079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1273328395483723079'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/general-network-error.html' title='General network error.'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-1494428359460472695</id><published>2008-09-19T09:31:00.001-07:00</published><updated>2008-09-19T09:36:02.580-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Error'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Auto-Display of Syntax Errors in C#</title><content type='html'>&lt;span id="ctl00_CPH_centerFront_ctl27_PageList1"&gt;&lt;span&gt;Is there a way in C# to have your syntax errors get marked as soon as you make them, instead of having to build first?  VB does this.  It underlines them with red squigglies as soon as you type in a variable that doesn't exist yet, for example.  But so far I haven't figured out how to make the IDE do the same thing when the language is C#.&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-1494428359460472695?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/1494428359460472695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=1494428359460472695' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1494428359460472695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/1494428359460472695'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/auto-display-of-syntax-errors-in-c.html' title='Auto-Display of Syntax Errors in C#'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4076745707884121351.post-5539481672479458759</id><published>2008-09-19T09:31:00.000-07:00</published><updated>2008-09-19T09:33:40.232-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Error'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Syntax error: line 1 using Microsoft ASP.NET AJAX</title><content type='html'>&lt;h2 class="pageTitle"&gt;        Syntax error: line 1 using Microsoft ASP.NET AJAX                    &lt;/h2&gt;                           &lt;p&gt;I read the &lt;a href="http://west-wind.com/weblog/posts/9151.aspx"&gt;last post&lt;/a&gt; from &lt;a href="http://west-wind.com/weblog/default.aspx"&gt;Rick Strahl&lt;/a&gt; about &lt;em&gt;IE 7 Script Errors&lt;/em&gt;. Yes, I found this already on some sites, too, so I started to find the real issue.&lt;/p&gt;&lt;p&gt;For this I started the great &lt;a href="http://www.fiddlertool.com/"&gt;Fiddler tool&lt;/a&gt; to analyse where the problem is. When you have Script Debugging enabled in your Internet Explorer settings you will get an alert when the script error appears. Don't click on this alert and have a look at the Fiddler output. When I open the &lt;a href="http://msdn2.microsoft.com/en-us/library/system.systemexception.aspx"&gt;example web page&lt;/a&gt; Rick is talking about it will always stop at the request for &lt;em&gt;/atlasglob.axd&lt;/em&gt;. The web server will send an http error message &lt;em&gt;302 Found&lt;/em&gt; with an redirect to &lt;em&gt;/Message-MSDN.htm?aspxerrorpath=/atlasglob.axd&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;In Fiddler you can add JavaScript to handle requests more in detail. So I added two lines to prevent loading of this file:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;if (oSession.url.indexOf("atlasglob.axd")&gt;-1) {&lt;br /&gt;    oSession.oRequest.FailSession(403, "", "");&lt;br /&gt;}&lt;/p&gt;&lt;/blockquote&gt;After reloading the page no script error appears, and the page is currently working the same. If you look through all the requests you will see that the MSDN web page is already using Atlas.js. Is there a common problem with Microsoft ASP.NET AJAX when the atlasglob.axd could not be found? And why is it missing, a configuration error&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4076745707884121351-5539481672479458759?l=errorkill.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errorkill.blogspot.com/feeds/5539481672479458759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4076745707884121351&amp;postID=5539481672479458759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/5539481672479458759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4076745707884121351/posts/default/5539481672479458759'/><link rel='alternate' type='text/html' href='http://errorkill.blogspot.com/2008/09/syntax-error-line-1-using-microsoft.html' title='Syntax error: line 1 using Microsoft ASP.NET AJAX'/><author><name>laksh</name><uri>http://www.blogger.com/profile/15432962518445225769</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
