EventHandling and Delegates
http://www.developerfusion.co.uk/show/2137/3/
Implementing it in the right way is much more important than just implementing it.
Posted by Prashanth Palakollu at 10:00 PM 0 comments
Labels: asp.net
Posted by Prashanth Palakollu at 8:11 AM 0 comments
Labels: General
Posted by Prashanth Palakollu at 3:59 PM 0 comments
Labels: asp.net
Posted by Prashanth Palakollu at 11:34 AM 0 comments
Labels: asp.net
Posted by Prashanth Palakollu at 11:37 PM 0 comments
Labels: MOSS 2007
Posted by Prashanth Palakollu at 5:04 PM 0 comments
Labels: General
Instead of restarting the IIS using IISReset, which would recycle all the AppPools on the server, you can just recycle the required AppPool using the following command:
%windir%\system32\cscript.exe c:\windows\system32\iisapp.vbs /a "[App Pool Name]" /r
You can create a shortcut for the above and add it to your toolbar
Posted by Prashanth Palakollu at 5:23 PM 0 comments
Labels: iis
Posted by Prashanth Palakollu at 1:00 PM 0 comments
Labels: General
Posted by Prashanth Palakollu at 11:35 AM 0 comments
Labels: asp.net
How to identify your SQL Server version and edition
I was trying to integrate reporting services with Sharepoint 2007 and the following error showed up while configuring reporting services:
Unable to connect to the Report Server WMI provider
Since Sql Server 2005 with SP2 is a requirement for the integration, I wanted to find out the version of sql server i was running. The following query helped to do the above:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Posted by Prashanth Palakollu at 10:16 AM 1 comments
Jerry's Blogs: October, 2006:
"SharePoint Version 2007 Page Life Cycle
User request the SharePoint Page using http
ASP.NET calls the WSS File provider
WSS file provider returns the page from File or Database
Page is parsed by SafeMode parsor if required
Returned page is complied by ASP.NE T Compiler
WSS File provider collects the page layout class and complies it
ASP.NET engine adds SharePoint Context Data to the site meta data and retreives the associated master page.
Master page got compiled and responded back to the user."
Posted by Prashanth Palakollu at 2:26 PM 0 comments
SharePoint Inspector
Just found this tool. Thought about blogging it....
Posted by Prashanth Palakollu at 1:47 PM 0 comments
Posted by Prashanth Palakollu at 4:01 PM 0 comments
Labels: iis
Few days back, I restored the content database from the production server to the development machine and lot of errors started throwing up like :
Running the following command fixed the problem:
stsadm -o sync -DeleteOldDatabases 0
Source PageURL : http://www.sharepointblogs.com/dwise/
Posted by Prashanth Palakollu at 8:38 AM 0 comments
Working for The Man Tux Deluxe
An excellent link, I just found on Slashdot. A must see for budding programmers .
Posted by Prashanth Palakollu at 8:06 AM 0 comments
Here are a few cmd prompt shortcuts ,I learned past few days
Posted by Prashanth Palakollu at 4:09 PM 0 comments