Book Image

Mastering Microsoft Forefront UAG 2010 Customization

Book Image

Mastering Microsoft Forefront UAG 2010 Customization

Overview of this book

While UAG is built to integrate with many environments and publish dozens of application types, many organizations require a certain level of customization to meet their needs. With this book in hand, you will be equipped to deal with these types of customization scenarios, and you will be confident in using such workarounds without hassle and trial and error. Written by some of the leading experts on UAG, "Mastering Microsoft Forefront UAG 2010 Customization" covers the most complex and challenging options for customizing UAG in a way that is friendly and easy to follow. It walks you through various customization tasks, including explanations and code samples, as well as creative ideas for troubleshooting your work. Until now, only a few of the extensions to UAG's services have been publicly available, and most were only known to a select few. Now, this can include you! Throughout this book, you will tackle how to change the system's look-and-feel, deal with advanced authentication schemes and write special functions that need to be executed as part of the client interaction. With "Mastering Microsoft Forefront UAG 2010 Customization", you too can learn how to customize various aspects of UAG's functionality to enhance your organization or customers' experience.
Table of Contents (16 chapters)
Mastering Microsoft Forefront UAG 2010 Customization
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface

HTML, CSS, JavaScript, ASP, and ASP.NET


So how much do you REALLY need to know? Probably not a lot, if you're lucky. Most visual changes only need basic understanding of HTML, and any modern HTML editor should be able to recognize any existing ASP elements and work around them as you change the layout. A lot of benefits can come from adding JavaScript, such as a script to toggle some text on-and-off if a user clicks on Help, or a nice floater to reveal info for your users about how to feed in their domain credentials. ASP, however, is probably the most important thing here.

The ASP web-scripting interface and the VB language it uses are quite old, and a lot of people know them well, so we will not attempt to teach it here. Another key concept is Server-Side Include (SSI), which is also used a lot. Normally, you wouldn't have to change these, but if you need to add your own files, this can become tricky, because inclusions are very sensitive to folder hierarchy. Some parts of UAG were written using ASP.NET, which means you won't be able to edit them, and even reading the code will be quite limited. Cascading Style Sheets (CSS) is also important, as a lot of the look-and-feel of UAG is controlled this way. At the end of the chapter, we have included a list of books that may be a good start towards brushing up on these technologies.