Download Export / Import DTS package for SQL Server 2005 Express Edition from here
http://www.microsoft.com/downloads/info.aspx?na=46&p=16&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=d09c1d60-a13c-4479-9b91-9e8b9d835cdc&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f4%2f4%2fd%2f44dbde61-b385-4fc2-a67d-48053b8f9fad%2fSQLServer2005_DTS.msi
Tuesday, March 25, 2008
Monday, March 17, 2008
Tuesday, March 11, 2008
Error Creating Control - Formdigest1. Failure decoding embedded permission set object
When you try to host an asp site in different apps server to query the sharepoint engine 2003, you may recieve the error
"Error Creating Control - Formdigest1. Failure decoding embedded permission set object"
while using the Formdigest control.
Formdigest controls is to be used in the pages of web application where in you query and update the sharepoint data via object ibrary. Formdigest validates the security of the page while submitting a request.
Resolution
To make it work, the web apps should be deployed in the same site, i mean in the same context.
-::-
"Error Creating Control - Formdigest1. Failure decoding embedded permission set object"
while using the Formdigest control.
Formdigest controls is to be used in the pages of web application where in you query and update the sharepoint data via object ibrary. Formdigest validates the security of the page while submitting a request.
Resolution
To make it work, the web apps should be deployed in the same site, i mean in the same context.
-::-
How to enable inline coding in MOSS 2007 or WSS 3.0 Custome aspx pages ?
By default, the inline code would throw error in custom defined aspx pages in MOSS / WSS 3.0. To make it work, add the following lines of code in the web.config.
<PageParserPaths>
<PageParserPath VirtualPath="/<>/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true" />
</PageParserPaths>
The "PageParserPaths" tags would be already existing in web.config. All you need to do is to add the code in between to specify your folders to execute the C# script.
- :: -
<PageParserPath VirtualPath="/<>/*" CompilationMode="Always" AllowServerSideScript="true" IncludeSubFolders="true" />
</PageParserPaths>
The "PageParserPaths" tags would be already existing in web.config. All you need to do is to add the code in between to specify your folders to execute the C# script.
- :: -
Subscribe to:
Posts (Atom)