Skip to Main Content
C# Cookbook, 2nd Edition
book

C# Cookbook, 2nd Edition

by Jay Hilyard, Stephen Teilhet
January 2006
Intermediate to advanced content levelIntermediate to advanced
1184 pages
43h 23m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook, 2nd Edition
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
Prebuilding an ASP.NET Web Site Programmatically
|
811
14.12 Prebuilding an ASP.NET Web Site
Programmatically
Problem
You want to prebuild your web site to avoid compilation delays and to avoid the
hosting scenario in which source code needs to be on the server.
Solution
Use the ClientBuildManager to prebuild your web site into an assembly. In order to
prebuild the web site, you must specify:
The virtual directory for the web application
The physical path to the web application directory
The location where you want to build the web application
Flags that help control the compilation
To prebuild the web application in the sample code for the book, first retrieve the
directory where the web application is located, then provide a virtual directory name
and a location for the web application to build to:
// Get the path to the web app shipping with this code...
string cscbWebPath = GetWebAppPath( );
// Make sure we have a web path.
if(cscbWebPath.Length>0)
{
string appVirtualDir = @"CSCBWeb";
string appPhysicalSourceDir = cscbWebPath;
// Make the target an adjacent directory as it cannot be in the same tree
// or the build manager screams...
string appPhysicalTargetDir = Path.GetDirectoryName(cscbWebPath) + @"\BuildCSCB";
Next, set up the flags for the compile using the PrecompilationFlags ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Stephen Teilhet, Jay Hilyard
C# Cookbook

C# Cookbook

Joe Mayo
Head First C#, 4th Edition

Head First C#, 4th Edition

Andrew Stellman, Jennifer Greene

Publisher Resources

ISBN: 0596100639Supplemental ContentCatalog PageErrata