Turn off more accessible mode Renacimiento Blog Host
Sign In | Help (new window)
Go Search


Renacimiento Blog Host
Pasión por la tecnología
Siempre en la cima de las innovaciones
Inicio
Nuestros Blogs
Acerca de...

View All Site Content
Categorías Principales
MOSS/WSS
Business Intelligence
.NET
Arquitectura
Biztalk
Seguridad
Exchange
TFS
Agile
Blogs
Alberto López
Alvaro Arias
Borja del Valle
Carlos Zapatel
Enrique Blanco
Jorge Barbero
Laura Sánchez
Mario Cortes
Roberto Gonzalez
Victor Recuero
Alberto Carnero
David Provencio
Jorge Onieva
Marcel Palou
Mariano de la Fuente
Ignacio Torres
Jose LLobell
Arturo Morales
Jesus Rio
Jorge Rodriguez
Ignacio Rodriguez
Gisela Torres
Javier Costero

Los controles de Telerik para ASP.NET MVC


0


Comentarios


 
  Tags: ASP.NET MVC

Si bien es cierto que ASP.NET MVC te da mayor control sobre la vista que genera, puede resultar un retraso en nuestro proyecto el intentar generar controles algo más elaborados si no disponemos de unos conocimientos previos como diseñadores. Para evitarnos esta búsqueda y aprendizaje, os propongo el uso de los controles de Telerik para ASP.NET MVC. Existen dos tipos de licencia: Una Open Source que está diseñada para el público en general, en la que podemos visualizar y modificar el código de los control...

Publicado el 11/03/2010 por Gisela Torres


MAD.NUG: Desarrollando software para entregar valor al cliente


0


Comentarios


 
  Tags: Eventos

El próximo 23 de Marzo tendremos la suerte de poder contar con Hadi Hariri, evangelista tecnológico en JetBrains, que nos hablará de BDD (Behaviour Driven Development) como metodología ágil de desarrollo.En esta charla tendremos la oportunidad de conocer las ideas detrás de BDD y ver de qué forma nos ayuda a lidiar a los desarrolladores con las especificaciones del cliente. Como siempre, el evento tendrá lugar en el edificio de Microsoft Ibérica en Madrid. Para más información os facilito el enlace. ...

Publicado el 07/03/2010 por Gisela Torres


¿Qué es Sharepoint?


0


Comentarios


 
  Tags: Sharepoint

Muchas de las personas que no han tenido aún la oportunidad de pelearse con este producto desconocen qué es Sharepoint o cuál es su finalidad. Sé que en Geeks.ms muchas personas trabajan con ello y han tenido que lidiar con algunas de sus "peculiaridades", pero voy a intentar simplificarlo a mi manera para aquellos que justo ahora comienzan con este mundo. Antiguamente, cuando las personas de una organización necesitaban compartir ficheros entre ellos, existían varias posibilidades: Se m...

Publicado el 07/03/2010 por Gisela Torres


Una nueva etapa


3


Comentarios


 
  Tags: Intro

La semana pasada comencé una nueva etapa de mi vida cuando me incorporé a Renacimieto :) Aunque ya dispongo de un blog en Geeks.ms, sincronizaré ambos para mantenerlos actualizados a la par. Espero que mi carrera profesional dentro de Rena sea lo más productiva posible y, por otro lado, poder compartir lo más posible con la comunidad. ¡Un saludo a tod@s! Return(GiS); en Geeks.ms

Publicado el 04/03/2010 por Gisela Torres


Novedades InfoPath 2010


0


Comentarios


 
  Tags: MOSS/WSS

InfoPath 2010 también incorpora mejoras, sobre todo en cuanto a diseño de formularios y su publicación. Entre las principales novedades podemos destacar:   El cliente InfoPath se separa en dos: InfoPath  Filler y InfoPath Designer. Se incorpora el Ribbon en los clientes InfoPath y en la interfaz web. Más fácil a la hora de publicar: Existe la publicación rápida y la avanzada. El WebPart de formulario admite conexiones. Reglas: Permiten realizar validaciones y acciones de forma fácil. Formularios ...

Publicado el 24/02/2010 por Mario Cortes Flores


Tools and Tips for HTML Integration


0


Comentarios


 
  Tags: Internet ; Proyectos ; User Experience

One of our weak points usually is the design integration tasks, if you are lucky you can have a very skilled web designer that gives you a cool cross-browser compatible markup that fits perfectly in your application, but most of the times you’re lucky if the HTML works perfectly in the plain html file and almost never the designer will be able to integrate him/herself the design into an .aspx or moss template, so when you start integrating it with your controls the pain comes. In our last Project we need...

Publicado el 23/02/2010 por Enrique Blanco


Disabling input validation in MVC2 using ASP.NET 4.0 (Part II)


0


Comentarios


 
  Tags: .NET

This is the second part of “Disabling input validation in MVC2 using ASP.NET 4.0”, in the first part we saw how to disable the input validation, to upload, for example, html code. The problem with that is that we disabled the validation for all fields in the form, so all the other fields (that might not contain html) can be “hacked” with html code if you don’t notice. So we need to protect them, and to be consistent with the rest of your application, let’s use the validation provide for ASP.NET by default...

Publicado el 21/02/2010 por Enrique Blanco


Instalación de SharePoint 2010 RC


0


Comentarios


 
  Tags: SharePoint 2010

En el caso de que estés instalando la RC de SharePoint 2010 después de desinstalar la beta, puede ser que te encuentres con que SharePoint te dice que la Product Key introducida no es válida. Esto es porque la instalación de la beta a un permanece en la caché. Para solucionar esto (gracias Manuel por la info) solamente tienes que ir a la ruta C:\Users\Usuario Instalación\AppData\Local\Temp y localizar un archivo similar a SharePoint Server Setup(2010020513575012B4...). Si editas este archivo encontrar...

Publicado el 19/02/2010 por Roberto González


Presentación LINQ Evento EvoluciónVsRevolución


0


Comentarios


 
  Tags: MOSS/WSS ; Renacimiento

El pasado 9 de Febrero se celebró el evento SharePoint 2010: Evolución Vs Revolución organizado por MSDN, donde pudimos comprobar algunas de las novedades de SharePoint 2010 para los desarrolladores. Podéis descargaros la presentación y fuentes de los ejemplos utilizados en mi presentación acerca de LINQ To SharePoint.   También podréis descargaros los vídeos de todas las sesiones desde: Desarrollo en SharePoint 2010 - Novedades y mejoras en las herramientas de desarrollo. Ponente: Juan Carlos Gonzá...

Publicado el 11/02/2010 por Mario Cortes Flores


Disabling input validation in MVC2 using ASP.NET 4.0


0


Comentarios


 
  Tags: .NET ; Arquitectura

Imagine you need to make a web page in which you can edit HTML and send it back to the server (an html editor), so you place the input and when you submit the form, the famous “A potentially dangerous Request.Form value was detected from the client” error rises, so you try the old way and you set the input validation to false in the page. Now imagine you’re using MVC, you are using controllers and views, not pages, and you want to disable the validation only on the specific controller that handles the edit...

Publicado el 08/02/2010 por Enrique Blanco


MOSS cache in https sites


0


Comentarios


 
  Tags: .NET ; MOSS/WSS

There is quite odd behavior with MOSS cache: Imagine you create a site with two areas, one that can be accessed by http and one which must be accessed using https. So you need to enable https in your site, etc… Alright, so how do you make the users access the secure zone by using https, you do two things: You link to the secure zone by using https. You write some code in the master that gets the path of the current page and if the page is in the secure zone and the HttpContext.Current.Request.Url.S...

Publicado el 03/02/2010 por Enrique Blanco


Creating a custom RSS for your site


2


Comentarios


 
  Tags: Proyectos ; Internet ; .NET ; Community

Sometimes you need to create a custom RSS feed for your site, and the product you’re using (MOSS, Umbraco, a custom development,…) does not provide what you exactly need. So you start thinking about building your own feed. The first attempt is to build the XML yourself, but you’ll find that it can be a little tricky, but think a while… since the RSS is an XML file you might create a XSD file so you can generate a class by using Visual Studio’s XSD.exe utility and then fill the class with your data letting ...

Publicado el 03/02/2010 por Enrique Blanco


Testing your antivirus using EICAR Standard Anti-Virus Test File


1


Comentario


 
  Tags: Arquitectura

Sometimes you have to install an antivirus on your infrastructure or add virus detecting features to your application, then you have to test if it works… I don’t know you but I usually don’t have a virus available to test if the AV is correctly configured and I don’t want to test the system with a real virus. So here comes EICAR Test File to help you ;) Basically it’s an standard string that all the Anti-Virus software recognize as a virus (and it’s completely harmless). So if you open a notepad and copy...

Publicado el 31/01/2010 por Enrique Blanco


Crawler error 2436 on a Host-Header based WebApp (and loopback check is disabled)


0


Comentarios


 
  Tags: Proyectos ; MOSS/WSS

This one took us a couple of hours (stressful hours) to spot. We rebooted a server and the crawler stopped crawling ;) We have two webapps published in the server, the first one is attending to the machine name, and the second (the faulty one) is attending to an alias in the dns (using a host header like “app.company.int” ). The two applications are internal to the company (the authoring farm of the two portals). After checking the problem we saw that only the host header webapp was unable to be crawled...

Publicado el 30/01/2010 por Enrique Blanco


Evento MSDN – SharePoint 2010: Evolución vs Revolución


0


Comentarios


 
  Tags: MOSS/WSS

El día 9 de Febrero en Madrid se celebrará el evento “SharePoint 2010: Evolución vs Revolución” en las oficinas de Microsoft y se repetirá en Barcelona el 15 de Marzo. El evento es gratuito y está promovido por MSDN en colaboración con miembros de SUGES y partners del sector. Está enfocado a las novedades en cuanto a desarrollo en SharePoint 2010, se verá también una introducción a algunas de las nuevas funcionalidades. Me podréis encontrar en ambos eventos hablando de LINQ to SharePoint. Podéis regist...

Publicado el 27/01/2010 por Mario Cortes Flores


Siguiente >>