Archive for July, 2009

ASP on Vista Error: Disallowed Parent Path cannot contain ‘..’ to indicate the parent directory.

Classic ASP may give you this error. Full error is something like this:
Active Server Pages error ‘ASP 0131′
Disallowed Parent Path
/include/login.asp, line 1
The Include file ‘../includes/hello.asp’ cannot contain ‘..’ to indicate the parent directory.

You can do this on Windows Vista/IIS7

Start Internet Services Manager.
Click Default Web Site, and then click Properties.
Double-click ASP in the [...]

Leave a Comment

Dynamic Language Runtime

The dynamic language runtime (DLR) is a runtime environment that adds a set of services for dynamic languages to the common language runtime (CLR). The DLR makes it easier to develop dynamic languages to run on the .NET Framework and to add dynamic features to statically typed languages.
Some of the available languages which use DLR [...]

Leave a Comment

Project Management Interview Questions

Just came through an excellent list of questions (only questions ;)).
Link: http://www.pmconnection.com/modules.php?name=News&file=article&sid=27
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Windows 7 Wallpaper

Just made a quick wallpaper for my desktop. Thought I may share it with my readers

Size: 1024×800

Download here
Alternate: here
VN:F [1.1.6_502]Rating: 5.0/5 (1 vote cast)

Leave a Comment

ASP.NET 4.0 and Visual Studio 2010 Web Development Features

Read it here: http://www.asp.net/learn/whitepapers/aspnet40/
Or download the whitepaper directly for offline reading here
 
Contents
Core Services Extensible Output Caching Auto-Start Web Applications Permanently Redirecting a Page The Incredible Shrinking Session State AJAX Functionality in ASP.NET 4.0 Client Template [...]

Leave a Comment

Microsoft Wave

Microsoft Wave available now. It is a site that brings you freshest developments and products to come out of Microsoft.

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Internet freedom

Some times I get nervous when I hear the question:
Praveen, why do you need Internet?

I am more on Research activities and gets mad when I do not get sufficient access to resources.
BLOCKER!!!!BLOCKER!!!!BLOCKER!!!!
btw, we all are bound to obey the rules Let the needle run…
Well, funny that I have access to http://www.youtube.com/ even though [...]

Leave a Comment

ninethsense bandwidth usage

>> The domain ninethsense.com (ninethse) has reached 80% of its bandwidth limit (2837.31/3500.00 Megs).
 
Every month end I have to face this … recession… no money to upgrade hosting
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Comments (2)

How to add a button to Outlook Standard toolbar

Here goes a quick code. You need to write your own button removal code This uses VSTO - for Office 2007

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Office.CommandBar cbar
= Application.ActiveExplorer().CommandBars["Standard"];
 
Office.CommandBarButton btn
= (Office.CommandBarButton)cbar.Controls.Add(Office.MsoControlType.msoControlButton,
Type.Missing, Type.Missing, Type.Missing, true);
 
btn.Click +=new Microsoft.Office.Core.
_CommandBarButtonEvents_ClickEventHandler(btn_Click);
 
}
 
 
private void btn_Click(CommandBarButton Ctrl,
ref bool CancelDefault)
{
MessageBox.Show("Clicked me!");
}

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

My first artile on CodeGain.com - Custom Membership provider for SharePoint

www.codegain.com is new for me. I thought I must post my next article there as I liked the name ‘CodeGain’
Click here to read this article article
My intention for this article was to provide a kick start for the SharePoint developers to write a Custom Provider for their database. You should be able to:

Use [...]

Leave a Comment