blog.devbroker.org author="Patrick Rabian" about="c#, sharepoint, biztalk, team system resources" more="news, samples, tips for .NET world's developers !"

Compte rendu des Microsoft TechDays 2007

Saturday, 24 February 2007 01:08 by prabian

A l’issu de cet évenement, je me suis efforcé de rédiger mes notes et j’imagine qu’elles pourront toujours intéresser d’autres personnes qui, peut-être, n’ont pas pu assister à toutes les sessions, voire à aucune !!!
Microsoft va certainement publier les PPT et des webcasts. En attendant, je pense qu’une vue plus synthétique, ou simplement, un autre regard, peut toujours être intéressant.

Voici le menu :

1      Informations générales

2      Office system 2007

3      SharePoint Designer 2007

4      Développement SharePoint 2007

5      Administration MOSS 2007

6      La sécurité dans SharePoint 2007

7      Excel Services

8      Industrialisation de la gestion de formulaires

9      WPF pour les données

10     Visual Studio Orcas pour le web

11     Interopérabilité .NET / J2EE

12     Team system : présentation

13     Biztalk 2006 R2

Il me reste quelques "?" que je n’ai pas pris le temps de compléter, n’hésitez pas à m’informer sur ces points ou à me signaler des erreurs.

 ACCEDER AU COMPTE RENDU

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

A lire si vous utilisez javascript…

Tuesday, 23 May 2006 08:55 by prabian

5 javascripts vraiment utiles : http://developpeur.journaldunet.com/tutoriel/dht/060512-5-javascripts-vraiment-utiles.shtml

 Quelques fonctions sympas : http://blogs.wdevs.com/Sukumar/archive/2005/05/10/3335.aspx

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Categories:   Javascript | css
Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

Applying XSL transform on XML with javascript

Monday, 13 February 2006 09:55 by prabian

<script type=”text/javascript”>
var xml = new ActiveXObject(”Microsoft.XMLDOM”);
xml.async = false;
xml.load(”fileTotransform.xml”);
var xsl = new ActiveXObject(”Microsoft.XMLDOM”);
xsl.async = false;
xsl.load(”styleForTransforming.xsl”);
document.write(xml.transformNode(xsl));
</script>

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Categories:   Javascript | css
Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

Javascript : Select all check boxes of a form

Wednesday, 7 December 2005 14:43 by prabian

function SelectAll(value)
{

var formblock;
var forminputs;

formblock = document.forms[0];
forminputs = formblock.getElementsByTagName(
‘input’);

for (i = 0; i < forminputs.length; i++)
{


var regex = new RegExp(‘checkbox’, ‘i’);
if (regex.test(forminputs[i].getAttribute(‘type’)))
{

if (value == ‘1′)
{
forminputs[i].checked =
true;
}

else
{
forminputs[i].checked =
false;
}
}
}
}

Keywords : javascript selectall input form checkbox

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Categories:   Javascript | css
Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed