<h1><a name='Intro'>Frequently Asked Questions</a></h1>
<span style="display:inline-block;">
<span style="color:#000000;">Get answers to common questions on working with the Express products
<div>
Show all answers</div>
<SCRIPT LANGUAGE="javascript">
function ShowHide(divId)
{
var id = document.getElementById(divId);
if (id.style.display == "none")
{
eval("id.style.display = 'block';");
}
else
{
eval("id.style.display = 'none';");
}
}
function ShowHideAll(show)
{
var divs = document.getElementsByTagName("div");
for (var i = 0; i < divs.length; i++)
{
var divId = divs[i].id;
if ( divId.indexOf("a_") == 0 )
{
if( true == show ) {
eval("document.getElementById('" + divId + "').style.display = 'block'");
} else {
eval("document.getElementById('" + divId + "').style.display = 'none'");
}
}
}
}
function ToggleAnswers() {
var tog = document.getElementById("Toggle");
//if(null != tog) {
if( tog.innerText == "Show all answers") {
ShowHideAll(true);
tog.innerText = "Hide all answers";
} else {
ShowHideAll(false);
tog.innerText = "Show all answers";
}
//}
}
</SCRIPT>
</span>
</span>
</p>
<hr />
<h3><a name='general'>General Questions</a></h3>
<ul>
<li class="gray">
What are the Express products?
<span style="color:#000000;"><div id="a_001" style="display:none;">The Express products are an expansion of the Visual Studio product line to include lightweight, easy to use, and easy to learn tools for hobbyists, enthusiasts, and students who want to build dynamic Windows applications, Web sites, and Web services.
With the Express products, users can:
<ul>
[*]Learn how to program using a streamlined, lightweight development environment with built-in tutorial content[*]Evaluate the .NET Framework for Windows and Web development[*]Create fun and interesting applications for their personal enjoyment or to share with their friends [/list]
The Express products consist of:
<ul>[*]Visual Web Developer 2005 Express Edition, a lightweight tool for building dynamic Web sites and Web services[*]Visual Basic 2005 Express Edition, a streamlined programming tool for beginning programmers to learn how to build exciting Windows applications[*]Visual C# 2005 Express Edition, Visual C++ 2005 Express Edition, and Visual J# 2005 Express Edition, targeted programming tools for students and enthusiasts who wish to learn the fundamentals of programming[*]Microsoft also ships SQL Server 2005 Express Edition, an entry-level database for hobbyists, enthusiasts, and students developers
[/list]</p></div>
</span>
<li class="gray">
What are the core features in the Express products?
<span style="color:#000000;"><div id="a_002" style="display:none;">The Express products are very lightweight in both features and size. Our aim is to keep the products at 50 MB or smaller, making them easy to download and install. Beyond that, probably the single biggest feature is simplicity. Beginning hobbyists, enthusiasts, and students may be overwhelmed by today's tools. The Express products will give them a very streamlined user experience, helping them focus on enjoying programming.</div>
</span>
<li class="gray">
Are the Express products intended to replace Visual Studio?
etc...