Error:
Server Error in '/ExamWebsite' Application. Login failed for user 'XXX\ASPNET'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException:...
Sunday, December 5, 2010
Wednesday, August 11, 2010
Anti Java Script Error
You may often find sites with Java Script errors in it.
With this portion of code, you can get rid of Java Script errors on your site.
I suggest using this error handler wisely ^^
Code:
<script type="text/javascript">
//Stop Error : No Time For joke! Anti JS error
//START :: Error Handler ModalPopUpDialog
function errorHandler(msg, file, line)...
Friday, July 23, 2010
Java Script Code to Refresh Page
Java Script code to refresh page:
In this case, it is used to refresh a particular web page every 10 seconds. Modify the part between the tag body as needed.
<html>
<head>
<script type="text/JavaScript">
<!--
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
// -->
</script>
</head>
<body...
Wednesday, June 23, 2010
Error with ADO Data Control
Error:Procedure declaration does not match description of event or procedure having the same name.Solution:If you are using ADO Data Control, use Microsoft ActiveX Data Object 2.5 or later.To add the reference:1. Go to menu Project -> References.2. From the list of available References, deselect references to Microsoft ActiveX Data Objects prior...
Friday, March 26, 2010
Award from Friend

This is another blog award from a friend, a programmer too, Kampoeng-IT. Through this post, I would like to thank this friend for the award :)I don't have time to give this award back to the other friends, quite busy right n...
Saturday, March 13, 2010
Creating List and Retrieving Corresponding Field on Ms. Excel

This post is specially made for a girl.You can download the samples about how to create list and retrieve field from corresponding item below on the same file and how to create list and retrieve field from corresponding item from different file below.How to Create List in Microsoft...
Sunday, March 7, 2010
Paging in SQL

Haven't posted anything for quite some time. This post is about how to make paging in SQL.If you are interested, you can follow the steps and execute the query provided. Else, I also provide the source code. You can download and observe it later.Before getting into the code,...
Tuesday, March 2, 2010
"Friendly Visitors" Blog Award
Another blog award in this new year, from a friend, Septhian. Have just had time to post this blog award :) Thank you, Septhian ^^This blog award is aimed at increasing the PageRank of the blogs listed from back links.I decide to give this blog award to my friends:Amru SiteAphrodite:...
Sunday, January 10, 2010
Problem with Crystal Report XI on Windows Vista

I've found an unresolved error recently, while trying to use Crystal Report XI on Windows Vista.Error: While trying to create database connection on Crystal Report XI, a splash of dialog box which says "Please wait while windows configures Crystal Reports XI" appears. After...
You may be intersted in
Related Posts
Updating Table Containing Xml Column via LinkedServer
If you are trying to update a table containing XML column via Linked Server in SQL Server, and you are not able to, you are not alone. There...