I have created this blog to place some of important things on it for my personal use and also to help others. Now a days I am doing job as Software Engineer in a company. I have completed my graduation in Computer Science from University of Sindh, Jamshoro, Pakistan.
Saturday, November 22, 2008
How to Convert Number to Character in JavaScript.
mycharacter = String.fromCharCode(1605);
That's all. Enjoy the world of programming!!!!!!!!!
Friday, November 21, 2008
Access to the path 'path' is denied.
1) Goto c:\inetpub\wwwroot\your_folder_name.
2) Go to properties of your_folder_name by right clicking on your folder.
3) Inside Properties, you will see a Security Tab.
4) Click on Security Tab and assign Full Control to EveryOne Role.
That's all!.... Now open your file again in browser and see that you have resolved the problem.
Note: I have write c:\inetpub because my windows directory is C Drive. If you have installed your windows in another Drive then write Drive\inetpub\wwwroot\your_folder_name.
Wish you all the best.
Saturday, November 1, 2008
The credentials supplied conflict with an existing set of credentials
Explanation:
Credentials are a username/password combination. In this case, you already have a logon session started with a set of credentials and have tried to start another session between the same computers, using the same set of credentials.
User Action:
Either end the existing session, or log on with a different set of credentials. Note that this message may not be caused by anything you did at the user interface, but can be caused by a running application (applications can log on as users). In that case, contact the supplier of the running application.
Sunday, October 26, 2008
How To Add The File Name and Path to the Header or the Footer in MS Word
1. | On the View menu, click Header and Footer. The header is outlined by non-printing dotted lines. NOTE: If you want to add the file name and path of your document to the footer, click Switch Between Header and Footer on the Header and Footer toolbar. |
2. | Click Insert AutoText on the Header and Footer toolbar, and then click Filename and path. |
Saturday, October 25, 2008
How do I stop people from posting spam messages on yahoo group?
Go to Management->Group Settings ->Messages->Posting and Archives (click Edit)->Posting Options (In the Moderation column, select Moderated.
Make sure to click Save Changes.
Friday, October 24, 2008
Your computer was joined to the domain using your computer old name because the following error has occurred. The directory service is busy.
1) Go to start menu and click on Run.
2) Type 'cmd' inside Run Window and click ok.
3) Command Prompt will open. Now write net use and Press Enter Button.
4) It will show all the shared drives. If there is any shared resource shown then first disconnect it.
5) After disconnecting the drives come back to Command Prompt and write net use */delete.
6) Now join it back to the domain and all the hurdles are gone.
I hope that this solution will help you as it resolve my issue.
Multiple connection to a server or shared resource by the same user, using more than one username, are not allowed. Disconnect all previous connection
1) Look at the sessions that are simultaneously running. On a Windows machine, Run -> ‘net use’. This will list all the connections.
2) Ensure that you dont access the shared drive when the program is running.(to avoid starting a new connection)
3) Delete all the connections to the storage. Better still, do a ‘net use * /delete’
I hope that this will resolve the issue as it happens with me.
Docker Tutorial
I have listed all the necessary commands of Docker below. In case if any is missing or if any improvement required, please share in comment...
-
Dear Readers, I face this problem in a web application build in .aspx. It mainly occurs when you are performing some action with javascrip...
-
Introduction In this article I will explain the concepts of Boxing and UnBoxing. C# provides us with Value types and Reference Types. Valu...
-
In my case, this error pertains to Oracle Merge query . After 30 minutes of time wastage and a lot of hunting on different forums, I come to...