Articles in the Programming / Coding Category
Programming / Coding »
If you have a primary column of type int, you need to insert unique values for it, best approach is set the column IS IDENTITY type true with identity seed 1. That way you wont have to worry about it.
Programming / Coding »
This is how you can get the name of the columns from a table in MS SQL.
Programming / Coding »
If you happen to try use the JavaScript property innerText on an element you wont get it work with FireFox browser.
Programming / Coding »
With VS 2008 this is an odd thing that just in time debugger keeps popping up when you have javascript url set with a script tag on the page.
Programming / Coding »
You might get into this error when try to select from a table valued function in Microsoft SQL.
Programming / Coding »
If your asp menu elements hide behind other elements on the page, this could be a potential solution for you.
Programming / Coding »
In cases you have asp pages on your website but you get this error when you try to view the page on the browser. If you are getting this error there are two things to check.
Programming / Coding »
This might be confusing for some people converting bytes for storage media etc.
Programming / Coding »
If you get javascript errors like jQuery is Not Defined or $ is Not Defined its almost always the case you are either not referencing the jquery javascript file or reference is wrong.
Programming / Coding »
When you try to build a javascript string in asp .net you might bump into this error. The common cause of this not escaping the characters that need to be escaped.
