Resolved the issue by setting .NET Framework in IIS > Default Web site > Properties > .NET Framework
It wasn't set to any value earlier.
Resolved the issue by setting .NET Framework in IIS > Default Web site > Properties > .NET Framework
It wasn't set to any value earlier.
Solution of the assigning the strong name to the third part DLL by using following command on visual studio command prompt.
E.g. Lets say the name of the third party DLL is myTest.dll.
Step 1: Dis-assemble the assembly
ildasm myTest.dll /out:myTest.il
Step 2: Re-Assemble using your strong-name key
ilasm myTest.il /res:myTest.res /dll /key:myTest.snk /out:myTestSN.dll
This code work perfectly to assign strong name.
for verification you can use following command,
sn -vf myTestSN.dll
http://social.msdn.microsoft.com/forums/en-US/clr/thread/35930958-9775-4e56-bd38-0362d124ffc4/
http://www.dreamincode.net/forums/showtopic47072.htm
Replace Decimal.Round with Math.Round
Validation expression should be : /{numberOfCharacters}/
Comma indicates at least number of characters, no comma indicates exactly as much characters
<asp:RegularExpressionValidator
ID="revNewPW0"
runat="server"
ControlToValidate="textNewPassword"
ErrorMessage="Password should have at least 7 characters"
ValidationExpression="/{7,}/"></asp:RegularExpressionValidator>
Even better solution is here:
http://www.slideshare.net/rwuhrman/sharepoint-my-site-101
http://odole.wordpress.com/2009/02/13/how-to-configure-shared-service-provider-and-mysite/
http://technet.microsoft.com/en-us/library/cc263115.aspx
http://technet.microsoft.com/en-us/library/cc261864.aspx
http://technet.microsoft.com/en-us/library/cc262706.aspx
http://blogs.msdn.com/markarend/archive/2008/04/14/scaling-mysites-how-many-mysites-per-content-db.aspx
http://blogs.technet.com/wbaer/archive/2008/06/10/planning-a-100-000-my-site-personal-site-deployment-notes.aspx
http://www.sharepointjoel.com/Lists/Posts/Post.aspx?ID=123
http://technet.microsoft.com/en-us/library/cc263115.aspx - this is one of the links that can be useful for us
http://odole.wordpress.com/2009/02/13/how-to-configure-shared-service-provider-and-mysite/