0

You receive error 401.1 when you browse a Web site that uses Integrated Authentication and is hosted on IIS 5.1 or IIS 6

Posted by Jiro on 4:35
When you use the fully qualified domain name (FQDN) or a custom host header to browse a local Web site that is hosted on a computer that is running Microsoft Internet Information Services (IIS) 5.1 or IIS 6, you may receive an error message that resembles the following:

"HTTP 401.1 - Unauthorized: Logon Failed"

For more information and to resolve this problem click on the following link:
http://support.microsoft.com/kb/896861/en-us

0

Service Pack 2 WSS 3.0 y Microsoft Sharepoint Server 2007

Posted by Jiro on 7:21
Ya están disponibles los SP2 oficiales de WSS 3.0 y MOSS 2007 en los siguientes enlaces:

Description of Windows SharePoint Services 3.0 SP2 and of Windows SharePoint Services 3.0 Language Pack SP2

http://support.microsoft.com/kb/953338


Description of 2007 Microsoft Office servers Service Pack 2 (SP2) and of 2007 Microsoft Office servers Language Pack Service Pack 2 (SP2)

http://support.microsoft.com/kb/953334

0

Metodo para convertir una fecha en formato Julian Date a dia, mes, año en C#

Posted by Jiro on 15:58

class Program {

public static void ExcelSerialDateToDMY(int nSerialDate, ref int nDay, ref int nMonth, ref int nYear)

{

//FUncion que calcula a partir de un entero en formato Julian Date el numero de dias , meses y años//
// Excel/Lotus 123 have a bug with 29-02-1900. 1900 is not a
// leap year, but Excel/Lotus 123 think it is…

if (nSerialDate == 60)
{
nDay = 29;
nMonth = 2;
nYear = 1900;
return;
}
else if (nSerialDate < 60)
{
// Because of the 29-02-1900 bug, any serial date
// under 60 is one off… Compensate.
nSerialDate++;
}

// Modified Julian to DMY calculation with an addition of 2415019
int l = nSerialDate + 68569 + 2415019;
int n = (int)((4 * l) / 146097);
l = l - (int)((146097 * n + 3) / 4);
int i = (int)((4000 * (l + 1)) / 1461001);
l = l - (int)((1461 * i) / 4) + 31;
int j = (int)((80 * l) / 2447);
nDay = l - (int)((2447 * j) / 80);
l = (int)(j / 11);
nMonth = j + 2 - (12 * l);
nYear = 100 * (n - 49) + i + l;

}

0

Customizar formularios AllItems.aspx, DispForm.aspx, EditForm.aspx , NewForm.aspx de listas de Sharepoint

Posted by Jiro on 14:30
1. Abrimos la site Collection desde Sharepoint Designer

File -> Open Site

2. Una vez abierto, desplegaremos el menú de listas y localizaremos la cual queremos modificar sus formularios. En el ejemplo “Lista Pruebas”.
Por defecto nos encontraremos con 4 formularios (AllItems.aspx, DispForm.aspx, EditForm.aspx y NewForm.aspx) que corresponden con la vista de todos los elementos de una lista, el formulario de ver ítem, de edición y el de añadir.




3. Seleccionamos por ejemplo “NewForm.aspx” y hacemos clic con el botón derecho para hacer un “Check Out” a dicha página.
4. Seleccionamos el área del formulario y la eliminaremos.


5. Tras eliminar la ListFormsWebPart por defecto iremos al menú “Insert” -> “Sharepoint Controls” -> “Custom List Form”. Nos aparecerá una pantalla como la siguiente en la cual seleccionaremos la lista y el Content Type que queremos aplicar a nuestro Formulario.



6. Una vez hecho esto ya podremos customizar nuestro Formulario a nuestro gusto , insertando el código HTML que deseemos.



Copyright © 2009 SHAREPOINT FOUNDATION All rights reserved. Theme by Laptop Geek. | Bloggerized by FalconHive.