Posts

Showing posts from October, 2008

Material de la charla sobre Internet Explorer 8

En esta dirección encontrarán el material sobre la charla IE8 realizada el 29 de octubre.   http://comunidadwindows.org/files/folders/ie8/default.aspx   Slds   Eduardo Castro – http://comunidadwindows.org

Infrastructure Update for Microsoft Office Servers (KB951297)

Si tienen instalado Windows Sharepoint Services, Sharepoint Office Server o Project Server 2007 deben instalar el Infrastruture Update el cual agrega estabilidad y rendimiento a estos productos, está disponible en esta dirección http://www.microsoft.com/downloads/details.aspx?FamilyId=3811C371-0E83-47C8-976B-0B7F26A3B3C4&displaylang=en   Slds   Eduardo Castro Comunidad Windows – http://comunidadwindows.org   Technorati Tags: wss , moss

Recursos de SharePoint

Excelente lista de recursos creada por Joel Oleson   http://blogs.msdn.com/joelo/archive/2007/10/12/sharepoint-deployment-essentials-and-resources.aspx SharePoint Deployment Essentials and Resources With a number of recent simplified releases I wanted to share what I'd call the SharePoint Deployment Essentials... First My Simplified Favorites, then some more verbose resources.  My latest attempt at capturing the best is in this SharePoint Deployment Essentials Guide , something I recommend as a must have for both the business stakeholders, the project manager, and the entire deployment team. Deployment Essentials (My Recommendations) Governance Checklist Guide (I consider this a deployment checklist) MOSS Deployment Project Plan Sample ( Project 2003 format , Project 2007 format ) Governance/Business/Service Plan Template Information Security and Use Policies Samples Configuration Management Considerations (Recent blog post) Tips on Site Collection Sizing ,

Custom Membership Provider para Forms Authentication y MOSS

  El siguiente es un ejemplo de código de Microsoft sobre cómo implementar un Membership Provider personalizado.   using System.Web.Security; using System.Configuration.Provider; using System.Collections.Specialized; using System; using System.Data; using System.Data.Odbc; using System.Configuration; using System.Diagnostics; using System.Web; using System.Globalization; using System.Security.Cryptography; using System.Text; using System.Web.Configuration; /* This provider works with the following schema for the table of user data. CREATE TABLE Users ( PKID Guid NOT NULL PRIMARY KEY, Username Text (255) NOT NULL, ApplicationName Text (255) NOT NULL, Email Text (128) NOT NULL, Comment Text (255), Password Text (128) NOT NULL, PasswordQuestion Text (255), PasswordAnswer Text (255), IsApproved YesNo, LastActivityDate DateTime, LastLoginDate DateTime, LastPasswordChangedDate DateTime, CreationDate DateTime, IsOnLine YesNo, IsLockedOut YesNo, LastLockedOutDat