Saturday, March 31, 2012

the asp.net equivalent of the "Request.Form" in asp

i am having problems with a simple web service i am creating in asp.net using C#. does anybody know what Request.Form is in asp.net.
cheers
much appreciatedI've never done classic ASP code, but I think what you're looking for is Request.Params[]

Should still be Request.Form. What is the problem that you are having?


Hi,
Request.Form method was used in classic ASP(3.0)
<form action="hello.aspx" method="post">
Your name: <input type="text" name="fname" size="20">
<input type="submit" value="Submit">
</form>
<%
dim fname
fname=Request.Form("fname")
Response.Write("Hello " & fname)
%>
As in Asp.net forms are posted to itself So Request.Form was not actively used in asp.net.
Iam still now able to understand why you require this in web services.


You can still use Request.Form, but you'll have to make sure the value exists before trying to use it. In Classic ASP, if the value didn't exist it would return an empty string, but in ASP.NET you get Nothing (in VB.NET, which I believe is null in C#).

the asp.net application doesnt compile it self under the /bin directory, where it is?

I want to use my custom control (.cs) in my web application. Custom control
is in the same assembly as my application. I want to know the name of the
assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name.
But in asp.net 2.0 i can't find the assembly. It is not compiled under the
/bin folder. Where it is, or how can i give a reference to it?re:
> I want to use my custom control (.cs) in my web application.

Custom controls aren't located in *.cs files.
Classes are included in *.cs files.

Can you clarify what you are looking for ?

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Espaol : http://asp.net.do/foros/
======================================
"Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message
news:uxcKX7t6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> I want to use my custom control (.cs) in my web application. Custom control is in the
> same assembly as my application. I want to know the name of the assembly (.dll) file so
> i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name. But in asp.net 2.0 i can't find the
> assembly. It is not compiled under the /bin folder. Where it is, or how can i give a
> reference to it?
I mean, not the *.ascx (User controls), custom control.

Let me ask my question in this way: I can't add my custom control in a web
page because i don't know what to write in the <@dotnet.itags.org.Page Assembly=''> register
tag.

"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:Oo7QLKu6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> re:
>> I want to use my custom control (.cs) in my web application.
> Custom controls aren't located in *.cs files.
> Classes are included in *.cs files.
> Can you clarify what you are looking for ?
>
> Juan T. Llibre, ASP.NET MVP
> ASP.NET FAQ : http://asp.net.do/faq/
> ASPNETFAQ.COM : http://www.aspnetfaq.com/
> Foros de ASP.NET en Espaol : http://asp.net.do/foros/
> ======================================
> "Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message
> news:uxcKX7t6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>>
>> I want to use my custom control (.cs) in my web application. Custom
>> control is in the same assembly as my application. I want to know the
>> name of the assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister
>> Assembly="abc.dll"> name. But in asp.net 2.0 i can't find the assembly.
>> It is not compiled under the /bin folder. Where it is, or how can i give
>> a reference to it?
OK...

For that, check out :
http://support.microsoft.com/defaul...kb;en-us;321749

The proper tag is :
<%@dotnet.itags.org. Register TagPrefix="Custom" Namespace="CustomControlNamespace" Assembly= "CustomControl" %
Custom is an alias that you associate with a namespace.
CustomControlNamespace is a namespace in which classes of an assembly are enclosed.
CustomControl is the name of the assembly file without an extension (.dll).


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Espaol : http://asp.net.do/foros/
======================================
"Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message news:uI%23L45u6FHA.1000@dotnet.itags.org.tk2msftngp13.phx.gbl...
>I mean, not the *.ascx (User controls), custom control.
>
> Let me ask my question in this way: I can't add my custom control in a web
> page because i don't know what to write in the <@dotnet.itags.org.Page Assembly=''> register
> tag.
>
>
> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
> news:Oo7QLKu6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>> re:
>>> I want to use my custom control (.cs) in my web application.
>>
>> Custom controls aren't located in *.cs files.
>> Classes are included in *.cs files.
>>
>> Can you clarify what you are looking for ?

>> "Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message
>> news:uxcKX7t6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>>>
>>> I want to use my custom control (.cs) in my web application. Custom
>>> control is in the same assembly as my application. I want to know the
>>> name of the assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister
>>> Assembly="abc.dll"> name. But in asp.net 2.0 i can't find the assembly.
>>> It is not compiled under the /bin folder. Where it is, or how can i give
>>> a reference to it?
On Wed, 16 Nov 2005 10:52:05 -0800, "Umut Tezduyar"
<umut@dotnet.itags.org.tezduyar.com> wrote:

>I want to use my custom control (.cs) in my web application. Custom control
>is in the same assembly as my application.

Is this 2.0? (I assume so based on your previous questions). Your
custom control must be in App_Code, correct?

Something like this:

namespace OTC
{
public class MyCustomControl : WebControl
{
protected override void Render(HtmlTextWriter writer)
{
writer.Write("This is my custom control");
base.Render(writer);
}
}
}

>I want to know the name of the
>assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name.
>But in asp.net 2.0 i can't find the assembly. It is not compiled under the
>/bin folder. Where it is, or how can i give a reference to it?

ASP.NET builds App_Code as a separate assembly, and the runtime will
recognize "App_Code" as an assembly name in a reference directive.

<%@dotnet.itags.org. Register Assembly="App_Code" TagPrefix="otc" Namespace="OTC" %
...

<otc:MyCustomControl runat="Server" id="boo" /
--
Scott
http://www.OdeToCode.com/blogs/scott/

the asp.net application doesn't compile it self under the /bin directory, where it is

I want to use my custom control (.cs) in my web application. Custom control
is in the same assembly as my application. I want to know the name of the
assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name.
But in asp.net 2.0 i can't find the assembly. It is not compiled under the
/bin folder. Where it is, or how can i give a reference to it?re:
> I want to use my custom control (.cs) in my web application.
Custom controls aren't located in *.cs files.
Classes are included in *.cs files.
Can you clarify what you are looking for ?
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Espaol : http://asp.net.do/foros/
======================================
"Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message
news:uxcKX7t6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> I want to use my custom control (.cs) in my web application. Custom contro
l is in the
> same assembly as my application. I want to know the name of the assembly (
.dll) file so
> i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name. But in asp.net 2.0 i c
an't find the
> assembly. It is not compiled under the /bin folder. Where it is, or how ca
n i give a
> reference to it?
I mean, not the *.ascx (User controls), custom control.
Let me ask my question in this way: I can't add my custom control in a web
page because i don't know what to write in the <@dotnet.itags.org.Page Assembly=''> register
tag.
"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:Oo7QLKu6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> re:
> Custom controls aren't located in *.cs files.
> Classes are included in *.cs files.
> Can you clarify what you are looking for ?
>
> Juan T. Llibre, ASP.NET MVP
> ASP.NET FAQ : http://asp.net.do/faq/
> ASPNETFAQ.COM : http://www.aspnetfaq.com/
> Foros de ASP.NET en Espaol : http://asp.net.do/foros/
> ======================================
> "Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message
> news:uxcKX7t6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>
OK...
For that, check out :
http://support.microsoft.com/defaul...kb;en-us;321749
The proper tag is :
<%@dotnet.itags.org. Register TagPrefix="Custom" Namespace="CustomControlNamespace" Assembly=
"CustomControl" %>
Custom is an alias that you associate with a namespace.
CustomControlNamespace is a namespace in which classes of an assembly are en
closed.
CustomControl is the name of the assembly file without an extension (.dll).
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Espaol : http://asp.net.do/foros/
======================================
"Umut Tezduyar" <umut@dotnet.itags.org.tezduyar.com> wrote in message news:uI%23L45u6FHA.1000@dotnet.itags.org.tk2msftngp13.p
hx.gbl...
>I mean, not the *.ascx (User controls), custom control.
>
> Let me ask my question in this way: I can't add my custom control in a web
> page because i don't know what to write in the <@dotnet.itags.org.Page Assembly=''> registe
r
> tag.
>
>
> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
> news:Oo7QLKu6FHA.2036@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
On Wed, 16 Nov 2005 10:52:05 -0800, "Umut Tezduyar"
<umut@dotnet.itags.org.tezduyar.com> wrote:

>I want to use my custom control (.cs) in my web application. Custom control
>is in the same assembly as my application.
>
Is this 2.0? (I assume so based on your previous questions). Your
custom control must be in App_Code, correct?
Something like this:
namespace OTC
{
public class MyCustomControl : WebControl
{
protected override void Render(HtmlTextWriter writer)
{
writer.Write("This is my custom control");
base.Render(writer);
}
}
}

>I want to know the name of the
>assembly (.dll) file so i can add it's <@dotnet.itags.org.Pegister Assembly="abc.dll"> name.
>But in asp.net 2.0 i can't find the assembly. It is not compiled under the
>/bin folder. Where it is, or how can i give a reference to it?
>
ASP.NET builds App_Code as a separate assembly, and the runtime will
recognize "App_Code" as an assembly name in a reference directive.
<%@dotnet.itags.org. Register Assembly="App_Code" TagPrefix="otc" Namespace="OTC" %>
...
<otc:MyCustomControl runat="Server" id="boo" />
Scott
http://www.OdeToCode.com/blogs/scott/

The asp Tags dosn't appear

Hi all,
I'm using the ASP.net 2.0 Beta 1, and in the html section of my page the
asp tags dosn't appear, and i get a warning if i wrote them.
Any helpCan you provide the error?
-Brock
DevelopMentor
http://staff.develop.com/ballen

> Hi all,
> I'm using the ASP.net 2.0 Beta 1, and in the html section of my page
> the
> asp tags dosn't appear, and i get a warning if i wrote them.
> Any help
The error i get is : asp is unrecognized tag prefix or device filter
Thanks for your reply and time
"Brock Allen" wrote:

> Can you provide the error?
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
>
>
>
> The error i get is : asp is unrecognized tag prefix or device filter
Hmm, this is very strange. I don't think I've ever come across this problem.
It makes me feel like somehow some core configuration setting in ASP.NET
is messed up. Can you create a new project in VS.NET and make it work there?
Also, are you using a master page? If you are, then the root element you
need is a <asp:Content> elemenet.
-Brock
DevelopMentor
http://staff.develop.com/ballen
Thanks for your reply, but the idea is i'm not using the master pages, becus
e
it is not working on my laptob, and the project is new one!!!!!!
"Brock Allen" wrote:

> Hmm, this is very strange. I don't think I've ever come across this proble
m.
> It makes me feel like somehow some core configuration setting in ASP.NET
> is messed up. Can you create a new project in VS.NET and make it work ther
e?
> Also, are you using a master page? If you are, then the root element you
> need is a <asp:Content> elemenet.
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
>

The asp Tags dosnt appear

Hi all,

I'm using the ASP.net 2.0 Beta 1, and in the html section of my page the
asp tags dosn't appear, and i get a warning if i wrote them.
Any helpCan you provide the error?

-Brock
DevelopMentor
http://staff.develop.com/ballen

> Hi all,
> I'm using the ASP.net 2.0 Beta 1, and in the html section of my page
> the
> asp tags dosn't appear, and i get a warning if i wrote them.
> Any help
The error i get is : asp is unrecognized tag prefix or device filter

Thanks for your reply and time

"Brock Allen" wrote:

> Can you provide the error?
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
> > Hi all,
> > I'm using the ASP.net 2.0 Beta 1, and in the html section of my page
> > the
> > asp tags dosn't appear, and i get a warning if i wrote them.
> > Any help
>
>
> The error i get is : asp is unrecognized tag prefix or device filter

Hmm, this is very strange. I don't think I've ever come across this problem.
It makes me feel like somehow some core configuration setting in ASP.NET
is messed up. Can you create a new project in VS.NET and make it work there?
Also, are you using a master page? If you are, then the root element you
need is a <asp:Content> elemenet.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Thanks for your reply, but the idea is i'm not using the master pages, becuse
it is not working on my laptob, and the project is new one!!!!!!

"Brock Allen" wrote:

> > The error i get is : asp is unrecognized tag prefix or device filter
> Hmm, this is very strange. I don't think I've ever come across this problem.
> It makes me feel like somehow some core configuration setting in ASP.NET
> is messed up. Can you create a new project in VS.NET and make it work there?
> Also, are you using a master page? If you are, then the root element you
> need is a <asp:Content> elemenet.
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
>

The ASP.NET FAQ is now online...

Read it at : http://asp.net.do/faq/
You will want to bookmark it.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================Thanks Juan... :}

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Juan T. Llibre" wrote:

> Read it at : http://asp.net.do/faq/
> You will want to bookmark it.
>
> Juan T. Llibre
> ASP.NET MVP
> http://asp.net.do/foros/
> Foros de ASP.NET en Espa?ol
> Ven, y hablemos de ASP.NET...
> ======================
>
This is more than a FAQ - it's a work of art.

Brilliantly done!
Thanks, Jordan.

I'm glad to see that the long hours put into it are appreciated!

The FAQ will be posted once more around the 15th of September,
and from then on will be posted once a month to all ASP.NET newsgroups.

Thanks again!

Juan
The ASP.NET FAQ
http://asp.net.do/faq/
==============

"Jordan" <A@dotnet.itags.org.B.com> wrote in message news:OjS5j2wrFHA.2588@dotnet.itags.org.tk2msftngp13.phx.gbl...
> This is more than a FAQ - it's a work of art.
> Brilliantly done!
Juan good job!!!!
Patrick

"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:uRizP9wrFHA.1684@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> Thanks, Jordan.
> I'm glad to see that the long hours put into it are appreciated!
> The FAQ will be posted once more around the 15th of September,
> and from then on will be posted once a month to all ASP.NET newsgroups.
> Thanks again!
>
> Juan
> The ASP.NET FAQ
> http://asp.net.do/faq/
> ==============
> "Jordan" <A@dotnet.itags.org.B.com> wrote in message
news:OjS5j2wrFHA.2588@dotnet.itags.org.tk2msftngp13.phx.gbl...
> > This is more than a FAQ - it's a work of art.
> > Brilliantly done!

The ASP.NET FAQ is now online...

Read it at : http://asp.net.do/faq/
You will want to bookmark it.
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================Thanks Juan... :}
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
"Juan T. Llibre" wrote:

> Read it at : http://asp.net.do/faq/
> You will want to bookmark it.
>
> Juan T. Llibre
> ASP.NET MVP
> http://asp.net.do/foros/
> Foros de ASP.NET en Espa?ol
> Ven, y hablemos de ASP.NET...
> ======================
>
>
This is more than a FAQ - it's a work of art.
Brilliantly done!
Thanks, Jordan.
I'm glad to see that the long hours put into it are appreciated!
The FAQ will be posted once more around the 15th of September,
and from then on will be posted once a month to all ASP.NET newsgroups.
Thanks again!
Juan
The ASP.NET FAQ
http://asp.net.do/faq/
==============
"Jordan" <A@dotnet.itags.org.B.com> wrote in message news:OjS5j2wrFHA.2588@dotnet.itags.org.tk2msftngp13.phx.gbl...kred">
> This is more than a FAQ - it's a work of art.
> Brilliantly done!
Juan good job!!!!
Patrick
"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:uRizP9wrFHA.1684@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> Thanks, Jordan.
> I'm glad to see that the long hours put into it are appreciated!
> The FAQ will be posted once more around the 15th of September,
> and from then on will be posted once a month to all ASP.NET newsgroups.
> Thanks again!
>
> Juan
> The ASP.NET FAQ
> http://asp.net.do/faq/
> ==============
> "Jordan" <A@dotnet.itags.org.B.com> wrote in message
news:OjS5j2wrFHA.2588@dotnet.itags.org.tk2msftngp13.phx.gbl...
>

The ASP.NET FAQ

Welcome to the ASP.NET FAQ.
The online version of this FAQ is at http://asp.net.do/faq/
Thank you for reading this FAQ!
Use it to improve your online experience.
The Microsoft Public Newsgroups allow users of Microsoft products to exchang
e technical
information and expertise. Please avoid personal attacks, slurs and profanit
y in your
posts.
A FAQ is a list of Frequently Answered Questions;
This is a guide to using this newsgroup intelligently in order to find answe
rs to your
ASP.NET questions.
The kind of answer you get to your questions depends on the way
you ask the questions as well as on the difficulty of writing the answer.
This FAQ will show you how to ask questions in a way that is likely to get y
ou the answer
you want to get : the right answer.
You have to do your part, too, if this is going to work out in such a way
that you *learn* what you need to learn, instead of getting ready-made answe
rs
which you will promptly forget and need to ask for them again.
With that in mind, the first FAQ recommendation is that you use search engin
es
to find out if the question you intend to ask has been already answered in n
ewsgroups.
Use resources like :
Google Groups Advanced Search ( http://groups.google.com/advanced_g...://www.msn.com/ )
to search for the text of the problem which is stumping you,
and save everybody the waste of time that asking a FAQ entails.
Remember : thousands of programmers will read your post. Be considerate of t
heir time.
1. General ASP.NET Questions
1.1 What is ASP.NET?
ASP.NET is a technology for creating dynamic Web pages which uses the .Net F
ramework.
You can author applications in any .NET compatible language, including Visua
l Basic .NET,
C#, and JScript .NET, and many others listed at
http://www.dotnetpowered.com/languages.aspx .
1.2 Where can I get ASP.NET?
You can get ASP.NET by installing the Microsoft .NET Framework on a computer
which has IIS
installed.
The .NET Framework is available in either a redistributable or SDK format.
ASP.NET 2.0, currently in Beta, will be released the first w in November,
2005.
1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to work.
What can I do to fix it?
You must install IIS before you install the .NET Framework.
If you install IIS after you install the .NET Framework,
you must then register the ASP.NET extensions with IIS.
You can do this by running the aspnet_regiis executable from:
%windows root directory%\Microsoft.NET\Framework\%version of the .NET
Framework%\aspnet_regiis -i
Where %windows root directory% is the directory Windows is installed to
(normally c:\windows or c:\winnt) and %version of the .NET Framework%
is the version of the .NET Framework you have installed.
The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and for Bet
a 2, it's
v2.0.50215.
It's always a good idea to try to find the answer to your question by readin
g the
documentation.
Yes, Read The Manual! The ASP.NET Quickstarts have many answers and samples.
You can install a local copy of the QuickStarts by installing the ASP.NET SD
K.
The ASP.NET 1.1 SDK is available at :
http://www.microsoft.com/downloads/...&displaylang=en
The ASP.NET 2.0 SDK comes with the VS.NET Beta :
http://lab.msdn.microsoft.com/vs2005/
If you can't install local copies of the ASP.NET QuickStart,
the ASP.NET 1.1 QuickStart is available online at :
http://www.asp.net/Tutorials/quickstart.aspx
The ASP.NET 1.1 Starter Kits are available at :
http://www.asp.net/Default.aspx?tabindex=8&tabid=47
The ASP.NET 2.0 QuickStart is available online at :
http://beta.asp.net/quickstart/aspnet/Default.aspx
The ASP.NET Beta 2 Starter Kits are available at :
http://www.asp.net/vwd/starterkits...ndex=4&tabId=46
Always try to find an answer by experimenting with the code.
The .NET Framework Class Browser is of great assistance to help you do this.
The .NET Framework 1.1 Class Browser is available at :
http://www.dotnetjunkies.com/sample...assBrowser.aspx
and also at :
http://www.csharpfriends.com/quicks...
er.aspx
The .NET Framework 2.0 Class Browser is available at :
http://beta.asp.net/quickstart/util/classbrowser.aspx
MSDN has all the ASP.NET documentation and Knowledge Base articles online.
Search MSDN for ASP.NET and .Net Framework questions at:
http://msdn.microsoft.com/netframework/
Search the MSDN Beta 2 documentation at: http://msdn2.microsoft.com/library/defaul
t.aspx
Major changes to ASP.NET and VS.NET going from Beta 2 --> RTM :
http://msdn.microsoft.com/asp.net/b...es/default.aspx
2. Newsgroup Questions
2.1 What subjects are appropriate in this newsgroup?
Any subject which relates to programming, installing or configuring ASP.NET.
Please don't post questions unrelated to ASP.NET.
ASP.NET is not the same as ASP. If you have questions relating to "Classic A
SP",
post them in the ASP newsgroups, e.g. microsoft.public.inetserver.asp.genera
l.
We encourage the posting of links to free ASP.NET controls/assemblies you ha
ve developed,
but request that commercial product availabilities be sent to :
microsoft.public.dotnet.framework.aspnet.announcements
Otherwise, your post will be deleted as SPAM.
2.2 How to write your post
a. Make the "Subject" a short, relevant summary of your problem
b. Make sure you describe your problem accurately.
Please post the exact code which is failing/generating your error.
That will help others find the solution to your problem.
c. Deal with one problem at a time.
If you have more than one problem, post it separately.
d. Make sure you include the version of ASP.NET and the
operating system you are using. This *really* helps others help you!
If the problem is a browser-related problem, include the relevant
browser identity and operating system information.
e. If you are getting an error message, include the error number and its tex
t.
f. Tell us what you have already tried to do to solve the problem.
2.3 How not to write your post
a. Avoid cross-posting, unless your problem applies to more than one newsgro
up.
b. Never post identical messages with different subjects.
This is a sure way to get your posts ignored.
c. Don't post your message in ALL CAPITALS. It's very hard to read.
This is another sure way to get your posts ignored.
d. Don't use unclear subject lines which don't summarize a problem, like the
se:
HEEEELLLLPPP!!!!!
Need help please.
Any experts here?
This is yet another sure way to get your posts ignored.
e. Don't ask for an email reply. The basis for peer-to-peer help newsgroups
like this one is for *everybody* to be helped by the answers provided.
f. Don't flame anyone, period. Nobody needs that in technical newsgroups.
If something, or someone, irks you, ignore the post.
Please treat all participants with respect, valuing divergent views and cont
rary
opinions.
Be polite. Share your perspectives to question ideas and stimulate interesti
ng
discussions.
g. The ASP.NET newsgroups, like all Microsoft public ng's, are unmoderated.
From time to time, there will be totally off-topic posts from trolls, spamme
rs,
pornographers, etc. Please don't reply to these posts, as it's a waste of ti
me.
Instead, killfile the poster if the post bothers you.
Microsoft has an anti-spam program in effect, and spam messages
are eliminated by a community program, but it's difficult to detect
some SPAM messages. Have patience and don't reply to any SPAM message.
We will get to it, and delete it.
2.4 Dealing with replies to your post
a. Trim unnecessary text from the replies to your posts, leaving just enough
to
get the context of the reply and the original problem. This is greatly
appreciated by the people who are trying to help you, since it saves them ti
me.
b. Analyze the suggestion you were given, and test to see whether it solves
the problem.
c. If the problem isn't solved by the suggestion, explain why in a follow-up
reply.
2.5 After you get your answer...
a. Confirm whether the proposed solution worked or not.
b. Thank the poster who gave you the answer to your question.
For people who spend their free time, unpaid, helping others in
peer-to-peer newsgroups, there's nothing better than to get a "Thank you".
Your "Thank you" is also helpful to others reading about your problem
because they see that the solution sent to you *did* work.
ASP.NET links :
Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/
ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/
ASP.NET Developer Center Archive : http://msdn.microsoft.com/asp.net/a...
lt.aspx
ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )
ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351
ASP.NET Security Practices :
http://msdn.microsoft.com/library/e...actices0001.asp
ASP.NET Security How Tos :
http://msdn.microsoft.com/library/e...HowTosIndex.asp
ADO.NET Support Center : http://support.microsoft.com/adonet
SQL Server Developer Center : http://msdn.microsoft.com/SQL/
IIS Tips and Hints : http://www.asp.net/Default.aspx?tabindex=9&tabid=48
Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and not i
n this ASP.NET
newsgroup.
ASP.NET 2.0 questions can be posted either here or at :
http://forums.asp.net/default.aspx?ForumGroupID=26
Official FAQs and Developer Resources :
ASP.NET Beta 2 FAQ : http://msdn.microsoft.com/asp.net/b...m/netframework/
VB Developer Center : http://msdn.microsoft.com/vbasic/
C# Developer Center : http://msdn.microsoft.com/vcsharp/
J# Developer Center : http://msdn.microsoft.com/vjsharp/
New ASP.NET Developer? See : http://msdn.microsoft.com/asp.net/l...opm
ent/
Free Learning Courses from Microsoft : http://lab.msdn.microsoft.com/vs2005/learni
ng/
Selected MSDN Technical Articles on ASP.NET :
http://msdn.microsoft.com/asp.net/articles/default.aspx
Full Index to MSDN ASP.NET articles :
http://msdn.microsoft.com/asp.net/archive/default.aspx
Free Online Book : Improving .Net Application Performance and Scalability:
http://msdn.microsoft.com/library/e...ml/scalenet.asp
Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's public nn
tp server ):
microsoft.public.dotnet.framework.aspnet
microsoft.public.dotnet.framework.aspnet.security
microsoft.public.dotnet.framework.aspnet.caching
microsoft.public.dotnet.framework.aspnet.webservices
microsoft.public.dotnet.framework.aspnet.buildingcontrols
microsoft.public.dotnet.framework.aspnet.webcontrols
microsoft.public.dotnet.framework.aspnet.datagridcontrol
microsoft.public.dotnet.framework.aspnet.announcements
The general .NET Framework newsgroup is : microsoft.public.dotnet.framework
The ADO.Net newsgroup is : microsoft.public.dotnet.framework.adonet
The newsgroups for SQL Server and MSDE are :
microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde
If you have a question which would fit better at one of the
above newsgroups, consider posting it in the appropiate one(s).
You can also use the HTML interface to the Microsoft Discussion Groups :
http://www.microsoft.com/communitie...us/default.aspx
Other FAQs and Developer Resources :
Connection Strings : http://www.connectionstrings.com/
SQL Server Forums : http://www.webservertalk.com/
DotNetJunkies : http://www.dotnetjunkies.com/
ASP.NET at 4GuysFromRolla : http://aspnet.4guysfromrolla.com/
ASP.NET at the ASP Alliance :
http://aspalliance.com/articles/LearnASPNET.aspx
http://aspalliance.com/articles/LearnControls.aspx
W3Schools ASP.NET Tutorial : http://www.w3schools.com/aspnet/default.asp
Egghead Cafe : http://www.eggheadcafe.com/default.asp
123aspx ASP.NET Directory : http://www.123aspx.com/
411 ASP.NET Resource Directory : http://www.411asp.net/
.NET 247 Assembly References and Discussions :
http://www.dotnet247.com/247reference/default.aspx
.Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm
Jon Skeet's C# FAQ and articles : http://www.yoda.arachsys.com/csharp/
OdeToCode.com
Articles : http://odetocode.com/Articles/default.aspx
Resources : http://odetocode.com/Resources/default.aspx
Karl Seguin's ASP.NET articles : http://www.openmymind.net/MyArticles.aspx
Steve Orr's list of free controls : http://steveorr.net/freecontrols/
C# FAQ for C++ programmers : http://www.andymcm.com/csharpfaq.htm
Free eBook : VB.NET Fundamentals, Sheriff and Getz :
http://platform.innerworkings.com/p...undamentals.msi
ASP.NET Version Switcher : http://www.denisbauer.com/NETTools/...e
r.aspx
We are working on a FAQ for specific programming questions.
When it's ready, we will include a link to it in this FAQ.
If you wish to submit a FAQ for inclusion in the ASP.NET FAQ,
please e-mail j_llibre@dotnet.itags.org.hotmail.com or reply to this FAQ.
Don't forget to trim your reply ! :-)
This FAQ will be published every w in the Microsoft public newsgroups whi
ch have
*aspnet* in their name.>Welcome to the ASP.NET FAQ.
>The online version of this FAQ is at http://asp.net.do/faq/
I, like many others here welcome a FAQ very much, but I would like to
make a usability request. Please can you improve the interface of the
FAQ. By that I mean such things as a clearer font, a more attractive
colour scheme (yes it does make a difference when reading, it's not just
eye candy) and, most important, have some way of making the questions
stand out from the answers. This last one could be done (and would have
massive side-benefits) by having a list of questions, which are links to
the answers, rather than having a long page with everything on in one
block.
Ultimately, splitting it down into sections would be mighty useful as I
reckon this is going to grow and grow. I know it's a bit more work, but
it will save a lot of work later, and improve the usefulness of the FAQ
no end.
See http://www.aspfaq.com/ for a really well organised FAQ. I know this
has been going for a lot longer, but it's worth aiming at a high quality
resource. It's going to be hard enough to get people to read the FAQ
anyway, we don't want to put them off by making it hard.
Please note that this is *not* meant as criticism. I appreciate very
much the hard work that has gone in to making the FAQ so far. This is
meant as constructive comments to improve it even more.
Ta ra
Alan Silver
(anything added below this line is nothing to do with me)
Thanks for your comments, Alan.
Strangely enough, when I go to http://www.aspfaq.com/ ,
using Firefox, IE and Maxthon, the page is blank.
Is there a problem with the site ?
As for your comments :

> Please can you improve the interface of the FAQ.
Sure. It's just plain vanilla right now.
There's sections, breaks and headers coming.
re:
> have some way of making the questions stand out from the answers. This las
t one could be
> done (and would have massive side-benefits) by having a list of questions,
which are
> links to the answers, rather than having a long page with everything on in one blo
ck.
This will have to wait for the next version of the FAQ, which will include
the most-commonly asked ASP.NET questions with their answers.
This current effort is just a listing of things to do and things not to do
when posting + a list of good ASP.NET resources, with only a few,
very basic, Q & A items included ( 3, to be exact... ).
This w ( I'm posting it tomorrow ) I've added a list of ASP.NET blogs.
The next version will be similar to http://www.aspnetfaq.com/
which is now not maintained, unfortunately.
*That* is what I refer to in the next-to-last item in the FAQ :

> We are working on a FAQ for specific programming questions. When it's read
y, we will
> include a link to it in this FAQ.
In sum, I agree with you : there's usability improvements needed,
but they will need to be centered around the next version of the
ASP.NET FAQ, which will be dedicated to Questions and Answers.
btw, do you think a wiki-type FAQ would be a worthwhile effort ?
Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
"Alan Silver" <alan-silver@dotnet.itags.org.nospam.thanx> wrote in message
news:gna+K6FuIFJDFwo4@dotnet.itags.org.nospamthankyou.spam...
> I, like many others here welcome a FAQ very much, but I would like to make
a usability
> request. Please can you improve the interface of the FAQ. By that I mean s
uch things as
> a clearer font, a more attractive colour scheme (yes it does make a differ
ence when
> reading, it's not just eye candy) and, most important, have some way of ma
king the
> questions stand out from the answers. This last one could be done (and wou
ld have
> massive side-benefits) by having a list of questions, which are links to t
he answers,
> rather than having a long page with everything on in one block.
> Ultimately, splitting it down into sections would be mighty useful as I re
ckon this is
> going to grow and grow. I know it's a bit more work, but it will save a lo
t of work
> later, and improve the usefulness of the FAQ no end.
> See http://www.aspfaq.com/ for a really well organised FAQ. I know this ha
s been going
> for a lot longer, but it's worth aiming at a high quality resource. It's g
oing to be
> hard enough to get people to read the FAQ anyway, we don't want to put the
m off by
> making it hard.
> Please note that this is *not* meant as criticism. I appreciate very much
the hard work
> that has gone in to making the FAQ so far. This is meant as constructive c
omments to
> improve it even more.
> Ta ra
> --
> Alan Silver
> (anything added below this line is nothing to do with me)
>Thanks for your comments, Alan.
>Strangely enough, when I go to http://www.aspfaq.com/ ,
>using Firefox, IE and Maxthon, the page is blank.
>Is there a problem with the site ?
Dunno, I just checked it in IE6 and it showed fine.

>As for your comments :
>
>Sure. It's just plain vanilla right now.
>There's sections, breaks and headers coming.
Jolly good. I expected you'd say that, but I just thought I'd raise the
issue in case ;-)

>re:
<snip>
>The next version will be similar to http://www.aspnetfaq.com/
>which is now not maintained, unfortunately.
That's exactly the sort of thing I meant (except for the rather garish
background colour!!). I didn't know about this site, shame it's been
left to wither, it could have been used as the basis for a great FAQ. Oh
well, as long as you are replacing it then all's well.

>*That* is what I refer to in the next-to-last item in the FAQ :
>
>In sum, I agree with you : there's usability improvements needed,
>but they will need to be centered around the next version of the
>ASP.NET FAQ, which will be dedicated to Questions and Answers.
Fine. I know it's early days. I think we all look forward to a more
complete version. I remember when I was big into ASP Classic, the FAQ
was very useful for obscure issues, as well as a quick pointer for
people asking FAQs in the n/groups.

>btw, do you think a wiki-type FAQ would be a worthwhile effort ?
Hmm, good question. The problem with a wiki is that anyone can change it
(obviously!!), which can be a detrimental factor in a FAQ. You really
need FAQ entries to be clear and concise. If someone has a comment on
the content of a FAQ, it is usually better directed to the FAQ author
who can decide if the suggested correction is fair. If you allow it to
be a free-for-all, I think the FAQ would end up being useless for its
main purpose.
Imagine if our latest troll had visited the wiki and filled up every FAQ
with his opinions of ASP.NET and how it can all be done better with
render functions!!
So after waffling, I think the answer (IMHO) is no. I would prefer to
see a normal FAQ, but with a feedback mechanism where people can make
comments, or request items to be included. These would all get send to
the FAQ maintainer who would decide what to do with them.
Alan Silver
(anything added below this line is nothing to do with me)
Thanks!
Your comments help.
Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
"Alan Silver" <alan-silver@dotnet.itags.org.nospam.thanx> wrote in message
news:SG3iSROYAGJDFwdQ@dotnet.itags.org.nospamthankyou.spam...
> Dunno, I just checked it in IE6 and it showed fine.
>
> Jolly good. I expected you'd say that, but I just thought I'd raise the is
sue in case
> ;-)
>
> <snip>
> That's exactly the sort of thing I meant (except for the rather garish bac
kground
> colour!!). I didn't know about this site, shame it's been left to wither,
it could have
> been used as the basis for a great FAQ. Oh well, as long as you are replac
ing it then
> all's well.
>
> Fine. I know it's early days. I think we all look forward to a more comple
te version. I
> remember when I was big into ASP Classic, the FAQ was very useful for obsc
ure issues, as
> well as a quick pointer for people asking FAQs in the n/groups.
>
> Hmm, good question. The problem with a wiki is that anyone can change it (
obviously!!),
> which can be a detrimental factor in a FAQ. You really need FAQ entries to
be clear and
> concise. If someone has a comment on the content of a FAQ, it is usually b
etter directed
> to the FAQ author who can decide if the suggested correction is fair. If y
ou allow it to
> be a free-for-all, I think the FAQ would end up being useless for its main
purpose.
> Imagine if our latest troll had visited the wiki and filled up every FAQ w
ith his
> opinions of ASP.NET and how it can all be done better with render function
s!!
> So after waffling, I think the answer (IMHO) is no. I would prefer to see
a normal FAQ,
> but with a feedback mechanism where people can make comments, or request i
tems to be
> included. These would all get send to the FAQ maintainer who would decide
what to do
> with them.
> --
> Alan Silver
> (anything added below this line is nothing to do with me)
See if you like the interface better now, Alan.
http://asp.net.do/faq/
;-)
Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
"Alan Silver" <alan-silver@dotnet.itags.org.nospam.thanx> wrote in message
news:SG3iSROYAGJDFwdQ@dotnet.itags.org.nospamthankyou.spam...

> Please can you improve the interface of the FAQ.
>See if you like the interface better now, Alan.
>http://asp.net.do/faq/
>;-)
That's fantastic!! It's amazing how much more usable it is with a nice
design.
One more comment - the general ASP.NET info questions section would
still benefit from having all the questions as links at the top. That
way you could scan them and see if your question is answered. The links
would just point further down the page where the questions and answers
would be shown exactly as you have them now.
As this section of the FAQ grows (I presume this is where the questions
that are actually asked frequently in the n/g would go), this could be
split into subpages, each with the same format.
An excellent resource. Please keep up the good work. I suggest a call to
all users of the group to contribute what they feel are good candidates
for the FAQ. That will save you a lot of work as you won't have to write
them all, and it will hopefully fill up the FAQ with the sorts of
questions that actually do get asked here regularly. That way, when they
get asked, we can just provide an URL that points to the answer. If
people post their suggestions in the group, we can all discuss them
before they put in the FAQ. We did this in another group I was in years
ago, and we built a great FAQ very quickly thanks to a joint effort by
the regulars.
Thanks again for your efforts. Ta ra
alan
P.S. Just noticed - the blogs page has a list of names, but no
explanation of who they are or why people might be interested in their
blogs. Maybe a short line or two would help here? Just like to keep you
busy!!
Alan Silver
(anything added below this line is nothing to do with me)
that's an excellent suggestion
Regards,
Alvin Bruney [MVP ASP.NET]
[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @dotnet.itags.org. www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
----
"Alan Silver" <alan-silver@dotnet.itags.org.nospam.thanx> wrote in message
news:LMsEg3F2guJDFwe6@dotnet.itags.org.nospamthankyou.spam...
> That's fantastic!! It's amazing how much more usable it is with a nice
> design.
> One more comment - the general ASP.NET info questions section would
> still benefit from having all the questions as links at the top. That
> way you could scan them and see if your question is answered. The links
> would just point further down the page where the questions and answers
> would be shown exactly as you have them now.
> As this section of the FAQ grows (I presume this is where the questions
> that are actually asked frequently in the n/g would go), this could be
> split into subpages, each with the same format.
> An excellent resource. Please keep up the good work. I suggest a call to
> all users of the group to contribute what they feel are good candidates
> for the FAQ. That will save you a lot of work as you won't have to write
> them all, and it will hopefully fill up the FAQ with the sorts of
> questions that actually do get asked here regularly. That way, when they
> get asked, we can just provide an URL that points to the answer. If
> people post their suggestions in the group, we can all discuss them
> before they put in the FAQ. We did this in another group I was in years
> ago, and we built a great FAQ very quickly thanks to a joint effort by
> the regulars.
> Thanks again for your efforts. Ta ra
> alan
> P.S. Just noticed - the blogs page has a list of names, but no
> explanation of who they are or why people might be interested in their
> blogs. Maybe a short line or two would help here? Just like to keep you
> busy!!
> --
> Alan Silver
> (anything added below this line is nothing to do with me)
>that's an excellent suggestion
<blush>
Why thanks!!
</blush>
Actually, I can't really take credit for it. We did it in another
newsgroup and it worked really well. I think some of my ramblings are
still in that FAQ!!
Alan Silver
(anything added below this line is nothing to do with me)
re:
> One more comment - the general ASP.NET info questions section would still
benefit from
> having all the questions as links at the top.
That *will* happen...in V2 of the FAQ.
The next step is to add a "Q & A" section.
That will entail, however, designing a database structure to host the info,
so it will be some time before it's ready. How much time ? I don't know.
Hopefully, I will be able to do it soon.
re:
> As this section of the FAQ grows (I presume this is where the questions t
hat are
> actually asked frequently in the n/g would go),
Right, but as part of the ASP.NET Q & A section of the FAQ.
The "Basic Info" page will stay as it is.
I want the info for beginners to be easily locatable,
and having a dedicated page for "Basic Info" is good,
so that the absolute beginner knows exactly where to go
re:
> this could be split into subpages, each with the same format.
I did one for "Classic ASP", and am working on porting it to ASP.NET.
It had a "drill-down" model, with the basic categories in a dropdown list,
which would display a list of questions for each category, but also had
a keyword search capability.
One thing which I think is important is to have demos of each Q&A,
and source code views ( for the FAQs which require sample code ).
That is, potentially, the most time-consuming part.
re:
> An excellent resource. Please keep up the good work.
Thanks. I hope it fulfills a good function for the ASP.NET community.
re:
> I suggest a call to all users of the group to contribute what they feel ar
e good
> candidates for the FAQ.
If the contributions come in, it will make the FAQ more useful.
I wish everybody would get involved, as this is, potentially,
a strong resource. There's some online FAQs, but they are
not as complete as what I think they should be.
My intent is to have an ad-free site for as long as I can,
so I hope to get the necessary collaboration to make it
as complete -and as fast-loading (no ads) - as possible.
re:
> That way, when they get asked, we can just provide an URL that points to the answe
r.
That's the way it will work.
re:
> P.S. Just noticed - the blogs page has a list of names, but no explanation
of who they
> are or why people might be interested in their blogs. Maybe a short line
or two would
> help here?
Hey, if they're there...they are important ! :-)
I have to leave some incentive to click the blog links and find out why!
Thanks for your comments, Alan!
Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
"Alan Silver" <alan-silver@dotnet.itags.org.nospam.thanx> wrote in message
news:LMsEg3F2guJDFwe6@dotnet.itags.org.nospamthankyou.spam...
> That's fantastic!! It's amazing how much more usable it is with a nice des
ign.
> One more comment - the general ASP.NET info questions section would still
benefit from
> having all the questions as links at the top. That way you could scan them
and see if
> your question is answered. The links would just point further down the pag
e where the
> questions and answers would be shown exactly as you have them now.
> As this section of the FAQ grows (I presume this is where the questions th
at are
> actually asked frequently in the n/g would go), this could be split into s
ubpages, each
> with the same format.
> An excellent resource. Please keep up the good work. I suggest a call to a
ll users of
> the group to contribute what they feel are good candidates for the FAQ. Th
at will save
> you a lot of work as you won't have to write them all, and it will hopeful
ly fill up the
> FAQ with the sorts of questions that actually do get asked here regularly.
That way,
> when they get asked, we can just provide an URL that points to the answer.
If people
> post their suggestions in the group, we can all discuss them before they p
ut in the FAQ.
> We did this in another group I was in years ago, and we built a great FAQ
very quickly
> thanks to a joint effort by the regulars.
> Thanks again for your efforts. Ta ra
> alan
> P.S. Just noticed - the blogs page has a list of names, but no explanation
of who they
> are or why people might be interested in their blogs. Maybe a short line o
r two would
> help here? Just like to keep you busy!!
> --
> Alan Silver
> (anything added below this line is nothing to do with me)

The ASP.NET FAQ...

Welcome to the ASP.NET FAQ.
Thank you for reading this FAQ!
Use it to improve your online experience.
The Microsoft Public Newsgroups allow users of Microsoft products to exchang
e technical
information and expertise. Please avoid personal attacks, slurs and profanit
y in your posts.
A FAQ is a list of Frequently Answered Questions;
This is a guide to using this newsgroup intelligently in order to find answe
rs to your ASP.NET questions.
The kind of answer you get to your questions depends on the way
you ask the questions as well as on the difficulty of writing the answer.
This FAQ will show you how to ask questions in a way that is likely to get y
ou the answer you want to get : the right answer.
You have to do your part, too, if this is going to work out in such a way
that you *learn* what you need to learn, instead of getting ready-made answe
rs
which you will promptly forget and need to ask for them again.
With that in mind, the first FAQ recommendation is that you use search engin
es
to find out if the question you intend to ask has been already answered in n
ewsgroups.
Use resources like :
Google Groups Advanced Search ( http://groups.google.com/advanced_g...://www.msn.com/ )
to search for the text of the problem which is stumping you,
and save everybody the waste of time that asking a FAQ entails.
Remember : thousands of programmers will read your post. Be considerate of t
heir time.
1. General ASP.NET Questions
1.1 What is ASP.NET?
ASP.NET is a technology for creating dynamic Web pages which uses the ..Net
Framework.
You can author applications in any .NET compatible language, including Visua
l Basic .NET,
C#, and JScript .NET, and many others listed at http://www.dotnetpowered.com/langu
ages.aspx .
1.2 Where can I get ASP.NET?
You can get ASP.NET by installing the Microsoft .NET Framework on a computer
which has IIS installed.
The .NET Framework is available in either a redistributable or SDK format.
ASP.NET 2.0, currently in Beta, will be released the first w in November,
2005.
1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to work.
What can I do to fix it?
You must install IIS before you install the .NET Framework.
If you install IIS after you install the .NET Framework,
you must then register the ASP.NET extensions with IIS.
You can do this by running the aspnet_regiis executable from:
%windows root directory%\Microsoft.NET\Framework\%version of the .NET Framew
ork%\aspnet_regiis -i
Where %windows root directory% is the directory Windows is installed to
(normally c:\windows or c:\winnt) and %version of the .NET Framework%
is the version of the .NET Framework you have installed.
The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and for Bet
a 2, it's v2.0.50215.
It's always a good idea to try to find the answer to your question by readin
g the documentation.
Yes, Read The Manual! The ASP.NET Quickstarts have many answers and samples.
You can install a local copy of the QuickStarts by installing the ASP.NET SD
K.
The ASP.NET 1.1 SDK is available at :
http://www.microsoft.com/downloads/...&displaylang=en
The ASP.NET 2.0 SDK comes with the VS.NET Beta :
http://lab.msdn.microsoft.com/vs2005/
If you can't install local copies of the ASP.NET QuickStart,
the ASP.NET 1.1 QuickStart is available online at :
http://www.asp.net/Tutorials/quickstart.aspx
The ASP.NET 1.1 Starter Kits are available at :
http://www.asp.net/Default.aspx?tabindex=8&tabid=47
The ASP.NET 2.0 QuickStart is available online at :
http://beta.asp.net/quickstart/aspnet/Default.aspx
The ASP.NET Beta 2 Starter Kits are available at :
http://www.asp.net/vwd/starterkits...ndex=4&tabId=46
Always try to find an answer by experimenting with the code.
The .NET Framework Class Browser is of great assistance to help you do this.
The .NET Framework 1.1 Class Browser is available at :
http://www.dotnetjunkies.com/sample...assBrowser.aspx
and also at :
http://www.csharpfriends.com/quicks...
er.aspx
The .NET Framework 2.0 Class Browser is available at :
http://beta.asp.net/quickstart/util/classbrowser.aspx
MSDN has all the ASP.NET documentation and Knowledge Base articles online.
Search MSDN for ASP.NET and .Net Framework questions at: http://msdn.microsoft.com
/netframework/
Search the MSDN Visual Studio Beta 2 documentation at: http://msdn2.microsoft.com/
library/default.aspx
2. Newsgroup Questions
2.1 What subjects are appropriate in this newsgroup?
Any subject which relates to programming, installing or configuring ASP.NET.
Please don't post questions unrelated to ASP.NET.
ASP.NET is not the same as ASP. If you have questions relating to "Classic A
SP",
post them in the ASP newsgroups, e.g. microsoft.public.inetserver.asp.genera
l.
We encourage the posting of links to free ASP.NET controls/assemblies you ha
ve developed,
but request that commercial product availabilities be sent to :
microsoft.public.dotnet.framework.aspnet.announcements
Otherwise, your post will be deleted as SPAM.
2.2 How to write your post
a. Make the "Subject" a short, relevant summary of your problem
b. Make sure you describe your problem accurately.
Please post the exact code which is failing/generating your error.
That will help others find the solution to your problem.
c. Deal with one problem at a time.
If you have more than one problem, post it separately.
d. Make sure you include the version of ASP.NET and the
operating system you are using. This *really* helps others help you!
If the problem is a browser-related problem, include the relevant
browser identity and operating system information.
e. If you are getting an error message, include the error number and its tex
t.
f. Tell us what you have already tried to do to solve the problem.
2.3 How not to write your post
a. Avoid cross-posting, unless your problem applies to more than one newsgro
up.
b. Never post identical messages with different subjects.
This is a sure way to get your posts ignored.
c. Don't post your message in ALL CAPITALS. It's very hard to read.
This is another sure way to get your posts ignored.
d. Don't use unclear subject lines which don't summarize a problem, like the
se:
HEEEELLLLPPP!!!!!
Need help please.
Any experts here?
This is yet another sure way to get your posts ignored.
e. Don't ask for an email reply. The basis for peer-to-peer help newsgroups
like this one is for *everybody* to be helped by the answers provided.
f. Don't flame anyone, period. Nobody needs that in technical newsgroups.
If something, or someone, irks you, ignore the post.
Please treat all participants with respect, valuing divergent views and cont
rary opinions.
Be polite. Share your perspectives to question ideas and stimulate interesti
ng discussions.
g. The ASP.NET newsgroups, like all Microsoft public ng's, are unmoderated.
From time to time, there will be totally off-topic posts from trolls, spamme
rs,
pornographers, etc. Please don't reply to these posts, as it's a waste of ti
me.
Instead, killfile the poster if the post bothers you.
Microsoft has an anti-spam program in effect, and spam messages
are eliminated by a community program, but it's difficult to detect
some SPAM messages. Have patience and don't reply to any SPAM message.
We will get to it, and delete it.
2.4 Dealing with replies to your post
a. Trim unnecessary text from the replies to your posts, leaving just enough
to
get the context of the reply and the original problem. This is greatly
appreciated by the people who are trying to help you, since it saves them ti
me.
b. Analyze the suggestion you were given, and test to see whether it solves
the problem.
c. If the problem isn't solved by the suggestion, explain why in a follow-up
reply.
2.5 After you get your answer...
a. Confirm whether the proposed solution worked or not.
b. Thank the poster who gave you the answer to your question.
For people who spend their free time, unpaid, helping others in
peer-to-peer newsgroups, there's nothing better than to get a "Thank you".
ASP.NET links :
Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/
ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/
ASP.NET Developer Center Archive : http://msdn.microsoft.com/asp.net/a...
lt.aspx
ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )
ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351
ASP.NET Security Practices : http://msdn.microsoft.com/library/e...actices0001.asp
ASP.NET Security How Tos : http://msdn.microsoft.com/library/e...HowTosIndex.asp
ADO.NET Support Center : http://support.microsoft.com/adonet
SQL Server Developer Center : http://msdn.microsoft.com/SQL/
IIS Tips and Hints : http://www.asp.net/Default.aspx?tabindex=9&tabid=48
Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and not i
n this ASP.NET newsgroup.
ASP.NET 2.0 questions can be posted either here or at : http://forums.asp.net/defa
u...ForumGroupID=26
Official FAQs and Developer Resources :
ASP.NET Beta 2 FAQ : http://msdn.microsoft.com/asp.net/b...m/netframework/
VB Developer Center : http://msdn.microsoft.com/vbasic/
C# Developer Center : http://msdn.microsoft.com/vcsharp/
J# Developer Center : http://msdn.microsoft.com/vjsharp/
New ASP.NET Developer? See : http://msdn.microsoft.com/asp.net/l...opm
ent/
Free Learning Courses from Microsoft : http://lab.msdn.microsoft.com/vs2005/learni
ng/
Selected MSDN Technical Articles on ASP.NET : http://msdn.microsoft.com/asp.net/a...es/default.aspx
Full Index to MSDN ASP.NET articles : http://msdn.microsoft.com/asp.net/a... />
fault.aspx
Free Online Book : Improving .Net Application Performance and Scalability:
http://msdn.microsoft.com/library/e...ml/scalenet.asp
Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's public nn
tp server ):
microsoft.public.dotnet.framework.aspnet
microsoft.public.dotnet.framework.aspnet.security
microsoft.public.dotnet.framework.aspnet.caching
microsoft.public.dotnet.framework.aspnet.webservices
microsoft.public.dotnet.framework.aspnet.buildingcontrols
microsoft.public.dotnet.framework.aspnet.webcontrols
microsoft.public.dotnet.framework.aspnet.datagridcontrol
microsoft.public.dotnet.framework.aspnet.announcements
The general .NET Framework newsgroup is : microsoft.public.dotnet.framework
The ADO.Net newsgroup is : microsoft.public.dotnet.framework.adonet
The newsgroups for SQL Server and MSDE are :
microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde
If you have a question which would fit better at one of the
above newsgroups, consider posting it in the appropiate one(s).
You can also use the HTML interface to the Microsoft Discussion Groups :
http://www.microsoft.com/communitie...us/default.aspx
Other FAQs and Developer Resources :
Connection Strings : http://www.connectionstrings.com/
SQL Server Forums : http://www.webservertalk.com/
DotNetJunkies : http://www.dotnetjunkies.com/
W3Schools ASP.NET Tutorial : http://www.w3schools.com/aspnet/default.asp
Egghead Cafe : http://www.eggheadcafe.com/default.asp
.Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm
C# FAQ : http://www.andymcm.com/csharpfaq.htm
Free eBook : VB.NET Fundamentals, Sheriff and Getz :
http://platform.innerworkings.com/p...undamentals.msi
ASP.NET Version Switcher : http://www.denisbauer.com/NETTools/...e
r.aspx
We are working on a FAQ for specific programming questions.
When it's ready, we will include a link to it in this FAQ.
The online version of this FAQ is at http://asp.net.do/faq/Good article! will this be reposted regularly (so that new readers will see
it also?)
An addition to 2.5 b:
It's not only nice to get a "thank you", it is also helpful to others readin
g
about this problem: they see that the solution *did* work.
Other C# articles + newsgroup FAQ: http://www.yoda.arachsys.com/csharp/
Hans Kesting
re:
> Good article!
Thank you. I've been working ( a lot ) on it... ;-)
re:
> will this be reposted regularly (so that new readers will see it also?)
Yes!
I will post it again in about 15 days,
and then plan to post it once a month.
Thank you for your suggestions.
The C# + FAQ link is very good.
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================
"Hans Kesting" <news.2.hansdk@dotnet.itags.org.spamgourmet.com> wrote in message
news:uSzwbfWrFHA.3720@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> Good article! will this be reposted regularly (so that new readers will se
e it also?)
> An addition to 2.5 b:
> It's not only nice to get a "thank you", it is also helpful to others read
ing
> about this problem: they see that the solution *did* work.
> Other C# articles + newsgroup FAQ: http://www.yoda.arachsys.com/csharp/
> Hans Kesting

The ASP.NET FAQ...

Welcome to the ASP.NET FAQ.

The online version of this FAQ is at http://asp.net.do/faq/
Bookmark it!

Thank you for reading this FAQ!
Use it to improve your online experience.

The Microsoft Public Newsgroups allow users of Microsoft products to exchange technical
information and expertise. Please avoid personal attacks, slurs and profanity in your
posts.

A FAQ is a list of Frequently Answered Questions;
This is a guide to using this newsgroup intelligently in order to find answers to your
ASP.NET questions.

The kind of answer you get to your questions depends on the way
you ask the questions as well as on the difficulty of writing the answer.

This FAQ will show you how to ask questions in a way that is likely to get you the answer
you want to get : the right answer.

You have to do your part, too, if this is going to work out in such a way
that you *learn* what you need to learn, instead of getting ready-made answers
which you will promptly forget and need to ask for them again.

With that in mind, the first FAQ recommendation is that you use search engines
to find out if the question you intend to ask has been already answered in newsgroups.

Use resources like :

Google Groups Advanced Search ( http://groups.google.com/advanced_group_search )
MSN Search ( http://www.msn.com/ )

to search for the text of the problem which is stumping you,
and save everybody the waste of time that asking a FAQ entails.

Remember : thousands of programmers will read your post. Be considerate of their time.

1. General ASP.NET Questions

1.1 What is ASP.NET?

ASP.NET is a technology for creating dynamic Web pages which uses the .Net Framework.

You can author applications in any .NET compatible language, including Visual Basic .NET,
C#, and JScript .NET, and many others listed at
http://www.dotnetpowered.com/languages.aspx .

1.2 Where can I get ASP.NET?

You can get ASP.NET by installing the Microsoft .NET Framework on a computer which has IIS
installed.
The .NET Framework is available in either a redistributable or SDK format.

ASP.NET 2.0, currently in Beta, will be released the first week in November, 2005.

1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to work.
What can I do to fix it?

You must install IIS before you install the .NET Framework.

If you install IIS after you install the .NET Framework,
you must then register the ASP.NET extensions with IIS.

You can do this by running the aspnet_regiis executable from:
%windows root directory%\Microsoft.NET\Framework\%version of the .NET
Framework%\aspnet_regiis -i

Where %windows root directory% is the directory Windows is installed to
(normally c:\windows or c:\winnt) and %version of the .NET Framework%
is the version of the .NET Framework you have installed.

The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and for Beta 2, it's
v2.0.50215.

It's always a good idea to try to find the answer to your question by reading the
documentation.
Yes, Read The Manual! The ASP.NET Quickstarts have many answers and samples.

You can install a local copy of the QuickStarts by installing the ASP.NET SDK.

The ASP.NET 1.1 SDK is available at :
http://www.microsoft.com/downloads/...&displaylang=en

The ASP.NET 2.0 SDK comes with the VS.NET Beta :
http://lab.msdn.microsoft.com/vs2005/

If you can't install local copies of the ASP.NET QuickStart,

the ASP.NET 1.1 QuickStart is available online at :
http://www.asp.net/Tutorials/quickstart.aspx

The ASP.NET 1.1 Starter Kits are available at :
http://www.asp.net/Default.aspx?tabindex=8&tabid=47

The ASP.NET 2.0 QuickStart is available online at :
http://beta.asp.net/quickstart/aspnet/Default.aspx

The ASP.NET Beta 2 Starter Kits are available at :
http://www.asp.net/vwd/starterkits...ndex=4&tabId=46

Always try to find an answer by experimenting with the code.
The .NET Framework Class Browser is of great assistance to help you do this.

The .NET Framework 1.1 Class Browser is available at :
http://www.dotnetjunkies.com/sample...assBrowser.aspx
and also at :
http://www.csharpfriends.com/quicks...assbrowser.aspx

The .NET Framework 2.0 Class Browser is available at :
http://beta.asp.net/quickstart/util/classbrowser.aspx

MSDN has all the ASP.NET documentation and Knowledge Base articles online.

Search MSDN for ASP.NET and .Net Framework questions at:
http://msdn.microsoft.com/netframework/

Search the MSDN Visual Studio Beta 2 documentation at:
http://msdn2.microsoft.com/library/default.aspx

Major changes to ASP.NET and VS.NET going from Beta 2 --> RTM :
http://msdn.microsoft.com/asp.net/b...es/default.aspx
Obsolete APIs removed after Beta 2 :
http://www.microsoft.com/downloads/...&displaylang=en

2. Newsgroup Questions

2.1 What subjects are appropriate in this newsgroup?

Any subject which relates to programming, installing or configuring ASP.NET.
Please don't post questions unrelated to ASP.NET.

ASP.NET is not the same as ASP. If you have questions relating to "Classic ASP",
post them in the ASP newsgroups, e.g. microsoft.public.inetserver.asp.general.

We encourage the posting of links to free ASP.NET controls/assemblies you have developed,
but request that commercial product availabilities be sent to :

microsoft.public.dotnet.framework.aspnet.announcem ents

Otherwise, your post will be deleted as SPAM.

2.2 How to write your post

a. Make the "Subject" a short, relevant summary of your problem

b. Make sure you describe your problem accurately.
Please post the exact code which is failing/generating your error.
That will help others find the solution to your problem.

c. Deal with one problem at a time.
If you have more than one problem, post it separately.

d. Make sure you include the version of ASP.NET and the
operating system you are using. This *really* helps others help you!

If the problem is a browser-related problem, include the relevant
browser identity and operating system information.

e. If you are getting an error message, include the error number and its text.

f. Tell us what you have already tried to do to solve the problem.

2.3 How not to write your post

a. Avoid cross-posting, unless your problem applies to more than one newsgroup.

b. Never post identical messages with different subjects.
This is a sure way to get your posts ignored.

c. Don't post your message in ALL CAPITALS. It's very hard to read.
This is another sure way to get your posts ignored.

d. Don't use unclear subject lines which don't summarize a problem, like these:

HEEEELLLLPPP!!!!!
Need help please.
Any experts here?

This is yet another sure way to get your posts ignored.

e. Don't ask for an email reply. The basis for peer-to-peer help newsgroups
like this one is for *everybody* to be helped by the answers provided.

f. Don't flame anyone, period. Nobody needs that in technical newsgroups.
If something, or someone, irks you, ignore the post.

Please treat all participants with respect, valuing divergent views and contrary
opinions.
Be polite. Share your perspectives to question ideas and stimulate interesting
discussions.

g. The ASP.NET newsgroups, like all Microsoft public ng's, are unmoderated.

From time to time, there will be totally off-topic posts from trolls, spammers,
pornographers, etc. Please don't reply to these posts, as it's a waste of time.

Instead, killfile the poster if the post bothers you.

Microsoft has an anti-spam program in effect, and spam messages
are eliminated by a community program, but it's difficult to detect
some SPAM messages. Have patience and don't reply to any SPAM message.

We will get to it, and delete it.

2.4 Dealing with replies to your post

a. Trim unnecessary text from the replies to your posts, leaving just enough to
get the context of the reply and the original problem. This is greatly
appreciated by the people who are trying to help you, since it saves them time.

b. Analyze the suggestion you were given, and test to see whether it solves the problem.

c. If the problem isn't solved by the suggestion, explain why in a follow-up reply.

2.5 After you get your answer...

a. Confirm whether the proposed solution worked or not.

b. Thank the poster who gave you the answer to your question.

For people who spend their free time, unpaid, helping others in
peer-to-peer newsgroups, there's nothing better than to get a "Thank you".

Your "Thank you" is also helpful to others reading about your problem
because they see that the solution sent to you *did* work.

ASP.NET links :

Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/

ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/

ASP.NET Developer Center Archive : http://msdn.microsoft.com/asp.net/archive/default.aspx

ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )

ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351

ASP.NET Security Practices :
http://msdn.microsoft.com/library/e...actices0001.asp

ASP.NET Security How Tos :
http://msdn.microsoft.com/library/e...HowTosIndex.asp

ADO.NET Support Center : http://support.microsoft.com/adonet

SQL Server Developer Center : http://msdn.microsoft.com/SQL/

IIS Tips and Hints : http://www.asp.net/Default.aspx?tabindex=9&tabid=48

Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and not in this ASP.NET
newsgroup.

ASP.NET 2.0 questions can be posted either here or at :
http://forums.asp.net/default.aspx?ForumGroupID=26

Official FAQs and Developer Resources :

ASP.NET Beta 2 FAQ : http://msdn.microsoft.com/asp.net/b...aq/default.aspx

..Net Framework Developer Center : http://msdn.microsoft.com/netframework/

VB Developer Center : http://msdn.microsoft.com/vbasic/

C# Developer Center : http://msdn.microsoft.com/vcsharp/

J# Developer Center : http://msdn.microsoft.com/vjsharp/

New ASP.NET Developer? See : http://msdn.microsoft.com/asp.net/l...wtodevelopment/

Free Learning Courses from Microsoft : http://lab.msdn.microsoft.com/vs2005/learning/

ASP.NET Webcasts at MSDN : http://www.microsoft.com/events/ser...naspnetoct.mspx

Fritz Onion's Essential ASP.NET Webcasts :
http://www.microsoft.com/events/ser...tialaspnet.mspx

Selected MSDN Technical Articles on ASP.NET :
http://msdn.microsoft.com/asp.net/articles/default.aspx

Full Index to MSDN ASP.NET articles :
http://msdn.microsoft.com/asp.net/archive/default.aspx

Free Online Book : Improving .Net Application Performance and Scalability:
http://msdn.microsoft.com/library/e...ml/scalenet.asp

Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's public nntp server ):

microsoft.public.dotnet.framework.aspnet
microsoft.public.dotnet.framework.aspnet.security
microsoft.public.dotnet.framework.aspnet.caching
microsoft.public.dotnet.framework.aspnet.webservic es
microsoft.public.dotnet.framework.aspnet.buildingc ontrols
microsoft.public.dotnet.framework.aspnet.webcontro ls
microsoft.public.dotnet.framework.aspnet.datagridc ontrol
microsoft.public.dotnet.framework.aspnet.announcem ents

The general .NET Framework newsgroup is : microsoft.public.dotnet.framework

The ADO.NET newsgroup is : microsoft.public.dotnet.framework.adonet

The newsgroups for SQL Server and MSDE are :
microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde

If you have a question which would fit better at one of the
above newsgroups, consider posting it in the appropiate one(s).

You can also use the HTML interface to the Microsoft Discussion Groups :
http://www.microsoft.com/communitie...us/default.aspx

Other FAQs and Developer Resources :

Connection Strings : http://www.connectionstrings.com/

SQL Server Forums : http://www.sqlmonster.com/

DotNetJunkies : http://www.dotnetjunkies.com/

ASP.NET at 4GuysFromRolla : http://aspnet.4guysfromrolla.com/

ASP.NET at the ASP Alliance :
http://aspalliance.com/articles/LearnASPNET.aspx
http://aspalliance.com/articles/LearnControls.aspx

Wintellect's ASP.NET FAQ : http://www.wintellect.com/resources...t.aspx?faq_id=1

W3Schools ASP.NET Tutorial : http://www.w3schools.com/aspnet/default.asp

Egghead Cafe : http://www.eggheadcafe.com/default.asp

123aspx ASP.NET Directory : http://www.123aspx.com/

411 ASP.NET Resource Directory : http://www.411asp.net/

..NET 247 Assembly References and Discussions :
http://www.dotnet247.com/247reference/default.aspx

..Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm

Bill Evjen's "Learn ASP.NET" page :
http://www.geekswithblogs.net/evjen...earnaspnet.aspx

Jon Skeet's C# FAQ and articles : http://www.yoda.arachsys.com/csharp/

OdeToCode.com
Articles : http://odetocode.com/Articles/default.aspx
Resources : http://odetocode.com/Resources/default.aspx

Karl Seguin's ASP.NET articles : http://www.openmymind.net/MyArticles.aspx

Steve Orr's list of free controls : http://steveorr.net/freecontrols/

C# FAQ for C++ programmers : http://www.andymcm.com/csharpfaq.htm

Free eBook : VB.NET Fundamentals, Sheriff and Getz :
http://platform.innerworkings.com/p...undamentals.msi

Free Computer Science books and lecture notes : http://www.freetechbooks.com/

ASP.NET Version Switcher : http://www.denisbauer.com/NETTools/...onSwitcher.aspx

Interesting Blogs for ASP.NET Developers:

Scott Guthrie : http://weblogs.asp.net/scottgu
Dino Esposito : http://weblogs.asp.net/despos
Scott Mitchell : http://www.scottonwriting.net/
Brock Allen : http://staff.develop.com/ballen/blog/
Bill Evjen : http://www.geekswithblogs.net/evjen
Rick Strahl : http://west-wind.com/weblog/
Rob Howard : http://weblogs.asp.net/rhoward/
Scott Watermasysk : http://scottwater.com/blog/default.aspx
Nikhil Kothari : http://www.nikhilk.net/
G. Andrew Duthie : http://blogs.msdn.com/gduthie/
Steven Smith : http://blogs.aspadvice.com/ssmith/
Kent Sharkey : http://www.acmebinary.com/blogs/kent

We are working on a FAQ for specific programming questions.
When it's ready, we will include a link to it in this FAQ.Just out of interest, you posted this comprehensive FAQ for the group, but
it left me wondering if you are someone in authority ( Microsoft Employee
etc ) or have you just thought you would post this for general consumption.
Also, where did this FAQ come from ?

Regards - Mr Newbie.

"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:Ov%23TVnQvFHA.596@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
> Welcome to the ASP.NET FAQ.
> The online version of this FAQ is at http://asp.net.do/faq/
> Bookmark it!
> Thank you for reading this FAQ!
> Use it to improve your online experience.
> The Microsoft Public Newsgroups allow users of Microsoft products to
> exchange technical
> information and expertise. Please avoid personal attacks, slurs and
> profanity in your posts.
> A FAQ is a list of Frequently Answered Questions;
> This is a guide to using this newsgroup intelligently in order to find
> answers to your ASP.NET questions.
> The kind of answer you get to your questions depends on the way
> you ask the questions as well as on the difficulty of writing the answer.
> This FAQ will show you how to ask questions in a way that is likely to get
> you the answer you want to get : the right answer.
> You have to do your part, too, if this is going to work out in such a way
> that you *learn* what you need to learn, instead of getting ready-made
> answers
> which you will promptly forget and need to ask for them again.
> With that in mind, the first FAQ recommendation is that you use search
> engines
> to find out if the question you intend to ask has been already answered in
> newsgroups.
> Use resources like :
> Google Groups Advanced Search (
> http://groups.google.com/advanced_group_search )
> MSN Search ( http://www.msn.com/ )
> to search for the text of the problem which is stumping you,
> and save everybody the waste of time that asking a FAQ entails.
> Remember : thousands of programmers will read your post. Be considerate of
> their time.
> 1. General ASP.NET Questions
> 1.1 What is ASP.NET?
> ASP.NET is a technology for creating dynamic Web pages which uses the .Net
> Framework.
> You can author applications in any .NET compatible language, including
> Visual Basic .NET,
> C#, and JScript .NET, and many others listed at
> http://www.dotnetpowered.com/languages.aspx .
> 1.2 Where can I get ASP.NET?
> You can get ASP.NET by installing the Microsoft .NET Framework on a
> computer which has IIS installed.
> The .NET Framework is available in either a redistributable or SDK format.
> ASP.NET 2.0, currently in Beta, will be released the first week in
> November, 2005.
> 1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to work.
> What can I do to fix it?
> You must install IIS before you install the .NET Framework.
> If you install IIS after you install the .NET Framework,
> you must then register the ASP.NET extensions with IIS.
> You can do this by running the aspnet_regiis executable from:
> %windows root directory%\Microsoft.NET\Framework\%version of the .NET
> Framework%\aspnet_regiis -i
> Where %windows root directory% is the directory Windows is installed to
> (normally c:\windows or c:\winnt) and %version of the .NET Framework%
> is the version of the .NET Framework you have installed.
> The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and for
> Beta 2, it's v2.0.50215.
> It's always a good idea to try to find the answer to your question by
> reading the documentation.
> Yes, Read The Manual! The ASP.NET Quickstarts have many answers and
> samples.
> You can install a local copy of the QuickStarts by installing the ASP.NET
> SDK.
> The ASP.NET 1.1 SDK is available at :
> http://www.microsoft.com/downloads/...&displaylang=en
> The ASP.NET 2.0 SDK comes with the VS.NET Beta :
> http://lab.msdn.microsoft.com/vs2005/
> If you can't install local copies of the ASP.NET QuickStart,
> the ASP.NET 1.1 QuickStart is available online at :
> http://www.asp.net/Tutorials/quickstart.aspx
> The ASP.NET 1.1 Starter Kits are available at :
> http://www.asp.net/Default.aspx?tabindex=8&tabid=47
> The ASP.NET 2.0 QuickStart is available online at :
> http://beta.asp.net/quickstart/aspnet/Default.aspx
> The ASP.NET Beta 2 Starter Kits are available at :
> http://www.asp.net/vwd/starterkits...ndex=4&tabId=46
> Always try to find an answer by experimenting with the code.
> The .NET Framework Class Browser is of great assistance to help you do
> this.
> The .NET Framework 1.1 Class Browser is available at :
> http://www.dotnetjunkies.com/sample...assBrowser.aspx
> and also at :
> http://www.csharpfriends.com/quicks...assbrowser.aspx
> The .NET Framework 2.0 Class Browser is available at :
> http://beta.asp.net/quickstart/util/classbrowser.aspx
> MSDN has all the ASP.NET documentation and Knowledge Base articles online.
> Search MSDN for ASP.NET and .Net Framework questions at:
> http://msdn.microsoft.com/netframework/
> Search the MSDN Visual Studio Beta 2 documentation at:
> http://msdn2.microsoft.com/library/default.aspx
> Major changes to ASP.NET and VS.NET going from Beta 2 --> RTM :
> http://msdn.microsoft.com/asp.net/b...es/default.aspx
> Obsolete APIs removed after Beta 2 :
> http://www.microsoft.com/downloads/...&displaylang=en
> 2. Newsgroup Questions
> 2.1 What subjects are appropriate in this newsgroup?
> Any subject which relates to programming, installing or configuring
> ASP.NET.
> Please don't post questions unrelated to ASP.NET.
> ASP.NET is not the same as ASP. If you have questions relating to "Classic
> ASP",
> post them in the ASP newsgroups, e.g.
> microsoft.public.inetserver.asp.general.
> We encourage the posting of links to free ASP.NET controls/assemblies you
> have developed,
> but request that commercial product availabilities be sent to :
> microsoft.public.dotnet.framework.aspnet.announcem ents
> Otherwise, your post will be deleted as SPAM.
> 2.2 How to write your post
> a. Make the "Subject" a short, relevant summary of your problem
> b. Make sure you describe your problem accurately.
> Please post the exact code which is failing/generating your error.
> That will help others find the solution to your problem.
> c. Deal with one problem at a time.
> If you have more than one problem, post it separately.
> d. Make sure you include the version of ASP.NET and the
> operating system you are using. This *really* helps others help you!
> If the problem is a browser-related problem, include the relevant
> browser identity and operating system information.
> e. If you are getting an error message, include the error number and its
> text.
> f. Tell us what you have already tried to do to solve the problem.
> 2.3 How not to write your post
> a. Avoid cross-posting, unless your problem applies to more than one
> newsgroup.
> b. Never post identical messages with different subjects.
> This is a sure way to get your posts ignored.
> c. Don't post your message in ALL CAPITALS. It's very hard to read.
> This is another sure way to get your posts ignored.
> d. Don't use unclear subject lines which don't summarize a problem, like
> these:
> HEEEELLLLPPP!!!!!
> Need help please.
> Any experts here?
> This is yet another sure way to get your posts ignored.
> e. Don't ask for an email reply. The basis for peer-to-peer help
> newsgroups
> like this one is for *everybody* to be helped by the answers provided.
> f. Don't flame anyone, period. Nobody needs that in technical newsgroups.
> If something, or someone, irks you, ignore the post.
> Please treat all participants with respect, valuing divergent views and
> contrary opinions.
> Be polite. Share your perspectives to question ideas and stimulate
> interesting discussions.
> g. The ASP.NET newsgroups, like all Microsoft public ng's, are
> unmoderated.
> From time to time, there will be totally off-topic posts from trolls,
> spammers,
> pornographers, etc. Please don't reply to these posts, as it's a waste
> of time.
> Instead, killfile the poster if the post bothers you.
> Microsoft has an anti-spam program in effect, and spam messages
> are eliminated by a community program, but it's difficult to detect
> some SPAM messages. Have patience and don't reply to any SPAM message.
> We will get to it, and delete it.
> 2.4 Dealing with replies to your post
> a. Trim unnecessary text from the replies to your posts, leaving just
> enough to
> get the context of the reply and the original problem. This is greatly
> appreciated by the people who are trying to help you, since it saves
> them time.
> b. Analyze the suggestion you were given, and test to see whether it
> solves the problem.
> c. If the problem isn't solved by the suggestion, explain why in a
> follow-up reply.
> 2.5 After you get your answer...
> a. Confirm whether the proposed solution worked or not.
> b. Thank the poster who gave you the answer to your question.
> For people who spend their free time, unpaid, helping others in
> peer-to-peer newsgroups, there's nothing better than to get a "Thank
> you".
> Your "Thank you" is also helpful to others reading about your problem
> because they see that the solution sent to you *did* work.
> ASP.NET links :
> Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/
> ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/
> ASP.NET Developer Center Archive :
> http://msdn.microsoft.com/asp.net/archive/default.aspx
> ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )
> ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351
> ASP.NET Security Practices :
> http://msdn.microsoft.com/library/e...actices0001.asp
> ASP.NET Security How Tos :
> http://msdn.microsoft.com/library/e...HowTosIndex.asp
> ADO.NET Support Center : http://support.microsoft.com/adonet
> SQL Server Developer Center : http://msdn.microsoft.com/SQL/
> IIS Tips and Hints : http://www.asp.net/Default.aspx?tabindex=9&tabid=48
> Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and not
> in this ASP.NET newsgroup.
> ASP.NET 2.0 questions can be posted either here or at :
> http://forums.asp.net/default.aspx?ForumGroupID=26
> Official FAQs and Developer Resources :
> ASP.NET Beta 2 FAQ :
> http://msdn.microsoft.com/asp.net/b...aq/default.aspx
> .Net Framework Developer Center : http://msdn.microsoft.com/netframework/
> VB Developer Center : http://msdn.microsoft.com/vbasic/
> C# Developer Center : http://msdn.microsoft.com/vcsharp/
> J# Developer Center : http://msdn.microsoft.com/vjsharp/
> New ASP.NET Developer? See :
> http://msdn.microsoft.com/asp.net/l...wtodevelopment/
> Free Learning Courses from Microsoft :
> http://lab.msdn.microsoft.com/vs2005/learning/
> ASP.NET Webcasts at MSDN :
> http://www.microsoft.com/events/ser...naspnetoct.mspx
> Fritz Onion's Essential ASP.NET Webcasts :
> http://www.microsoft.com/events/ser...tialaspnet.mspx
> Selected MSDN Technical Articles on ASP.NET :
> http://msdn.microsoft.com/asp.net/articles/default.aspx
> Full Index to MSDN ASP.NET articles :
> http://msdn.microsoft.com/asp.net/archive/default.aspx
> Free Online Book : Improving .Net Application Performance and Scalability:
> http://msdn.microsoft.com/library/e...ml/scalenet.asp
> Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's public
> nntp server ):
> microsoft.public.dotnet.framework.aspnet
> microsoft.public.dotnet.framework.aspnet.security
> microsoft.public.dotnet.framework.aspnet.caching
> microsoft.public.dotnet.framework.aspnet.webservic es
> microsoft.public.dotnet.framework.aspnet.buildingc ontrols
> microsoft.public.dotnet.framework.aspnet.webcontro ls
> microsoft.public.dotnet.framework.aspnet.datagridc ontrol
> microsoft.public.dotnet.framework.aspnet.announcem ents
> The general .NET Framework newsgroup is :
> microsoft.public.dotnet.framework
> The ADO.NET newsgroup is : microsoft.public.dotnet.framework.adonet
> The newsgroups for SQL Server and MSDE are :
> microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde
> If you have a question which would fit better at one of the
> above newsgroups, consider posting it in the appropiate one(s).
> You can also use the HTML interface to the Microsoft Discussion Groups :
> http://www.microsoft.com/communitie...us/default.aspx
> Other FAQs and Developer Resources :
> Connection Strings : http://www.connectionstrings.com/
> SQL Server Forums : http://www.sqlmonster.com/
> DotNetJunkies : http://www.dotnetjunkies.com/
> ASP.NET at 4GuysFromRolla : http://aspnet.4guysfromrolla.com/
> ASP.NET at the ASP Alliance :
> http://aspalliance.com/articles/LearnASPNET.aspx
> http://aspalliance.com/articles/LearnControls.aspx
> Wintellect's ASP.NET FAQ :
> http://www.wintellect.com/resources...t.aspx?faq_id=1
> W3Schools ASP.NET Tutorial : http://www.w3schools.com/aspnet/default.asp
> Egghead Cafe : http://www.eggheadcafe.com/default.asp
> 123aspx ASP.NET Directory : http://www.123aspx.com/
> 411 ASP.NET Resource Directory : http://www.411asp.net/
> .NET 247 Assembly References and Discussions :
> http://www.dotnet247.com/247reference/default.aspx
> .Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm
> Bill Evjen's "Learn ASP.NET" page :
> http://www.geekswithblogs.net/evjen...earnaspnet.aspx
> Jon Skeet's C# FAQ and articles : http://www.yoda.arachsys.com/csharp/
> OdeToCode.com
> Articles : http://odetocode.com/Articles/default.aspx
> Resources : http://odetocode.com/Resources/default.aspx
> Karl Seguin's ASP.NET articles : http://www.openmymind.net/MyArticles.aspx
> Steve Orr's list of free controls : http://steveorr.net/freecontrols/
> C# FAQ for C++ programmers : http://www.andymcm.com/csharpfaq.htm
> Free eBook : VB.NET Fundamentals, Sheriff and Getz :
> http://platform.innerworkings.com/p...undamentals.msi
> Free Computer Science books and lecture notes :
> http://www.freetechbooks.com/
> ASP.NET Version Switcher :
> http://www.denisbauer.com/NETTools/...onSwitcher.aspx
> Interesting Blogs for ASP.NET Developers:
> Scott Guthrie : http://weblogs.asp.net/scottgu
> Dino Esposito : http://weblogs.asp.net/despos
> Scott Mitchell : http://www.scottonwriting.net/
> Brock Allen : http://staff.develop.com/ballen/blog/
> Bill Evjen : http://www.geekswithblogs.net/evjen
> Rick Strahl : http://west-wind.com/weblog/
> Rob Howard : http://weblogs.asp.net/rhoward/
> Scott Watermasysk : http://scottwater.com/blog/default.aspx
> Nikhil Kothari : http://www.nikhilk.net/
> G. Andrew Duthie : http://blogs.msdn.com/gduthie/
> Steven Smith : http://blogs.aspadvice.com/ssmith/
> Kent Sharkey : http://www.acmebinary.com/blogs/kent
> We are working on a FAQ for specific programming questions.
> When it's ready, we will include a link to it in this FAQ.
re:
> it left me wondering if you are someone in authority (Microsoft Employee

My only "authority" is having dealt with ASP.NET since pre-beta,
and with ASP since pre-beta, since 1997.

I have also co-authored a few books on the subjects :
http://www.amazon.com/exec/obidos/s...0T.%20%20Llibre

That might confer me some "authority", too. ;-)

MVPs cannot be Microsoft employees, btw.

re:
> you just thought you would post this for general consumption.

Yes I did, primarily as a guide for ASP.NET newbies.
The online version is at : http://asp.net.do/faq/

re:
> Also, where did this FAQ come from ?

I wrote most of it.

A couple of friendly guys who frequent this newsgroup reviewed it
and made some very much on-target suggestions for improvement.

I took their advice and corrected what concerned them.

If you have any suggestions/corrections/additions for the FAQ, please email me.
The email address is both on the FAQ posted and at the website.

btw, the Q & A portion of the FAQ will be ready shortly.
There's already some 200 questions and answers in it.

I will post the URL here as soon as it's ready.

best regards,

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Espaol : http://asp.net.do/foros/
======================================
"Mr Newbie" <here@dotnet.itags.org.now.com> wrote in message news:O7ep$yQvFHA.2312@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> Just out of interest, you posted this comprehensive FAQ for the group, but it left me
> wondering if you are someone in authority ( Microsoft Employee etc ) or have you just
> thought you would post this for general consumption. Also, where did this FAQ come from
> ?
> Regards - Mr Newbie.

> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
> news:Ov%23TVnQvFHA.596@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
>> Welcome to the ASP.NET FAQ.
>>
>> The online version of this FAQ is at http://asp.net.do/faq/

>> We are working on a FAQ for specific programming questions.
>> When it's ready, we will include a link to it in this FAQ.
Be happy somone took is time to do it first
Patrick

"Mr Newbie" <here@dotnet.itags.org.now.com> wrote in message
news:O7ep$yQvFHA.2312@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
> Just out of interest, you posted this comprehensive FAQ for the group, but
> it left me wondering if you are someone in authority ( Microsoft Employee
> etc ) or have you just thought you would post this for general
consumption.
> Also, where did this FAQ come from ?
> Regards - Mr Newbie.
> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
> news:Ov%23TVnQvFHA.596@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
> > Welcome to the ASP.NET FAQ.
> > The online version of this FAQ is at http://asp.net.do/faq/
> > Bookmark it!
> > Thank you for reading this FAQ!
> > Use it to improve your online experience.
> > The Microsoft Public Newsgroups allow users of Microsoft products to
> > exchange technical
> > information and expertise. Please avoid personal attacks, slurs and
> > profanity in your posts.
> > A FAQ is a list of Frequently Answered Questions;
> > This is a guide to using this newsgroup intelligently in order to find
> > answers to your ASP.NET questions.
> > The kind of answer you get to your questions depends on the way
> > you ask the questions as well as on the difficulty of writing the
answer.
> > This FAQ will show you how to ask questions in a way that is likely to
get
> > you the answer you want to get : the right answer.
> > You have to do your part, too, if this is going to work out in such a
way
> > that you *learn* what you need to learn, instead of getting ready-made
> > answers
> > which you will promptly forget and need to ask for them again.
> > With that in mind, the first FAQ recommendation is that you use search
> > engines
> > to find out if the question you intend to ask has been already answered
in
> > newsgroups.
> > Use resources like :
> > Google Groups Advanced Search (
> > http://groups.google.com/advanced_group_search )
> > MSN Search ( http://www.msn.com/ )
> > to search for the text of the problem which is stumping you,
> > and save everybody the waste of time that asking a FAQ entails.
> > Remember : thousands of programmers will read your post. Be considerate
of
> > their time.
> > 1. General ASP.NET Questions
> > 1.1 What is ASP.NET?
> > ASP.NET is a technology for creating dynamic Web pages which uses the
..Net
> > Framework.
> > You can author applications in any .NET compatible language, including
> > Visual Basic .NET,
> > C#, and JScript .NET, and many others listed at
> > http://www.dotnetpowered.com/languages.aspx .
> > 1.2 Where can I get ASP.NET?
> > You can get ASP.NET by installing the Microsoft .NET Framework on a
> > computer which has IIS installed.
> > The .NET Framework is available in either a redistributable or SDK
format.
> > ASP.NET 2.0, currently in Beta, will be released the first week in
> > November, 2005.
> > 1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to work.
> > What can I do to fix it?
> > You must install IIS before you install the .NET Framework.
> > If you install IIS after you install the .NET Framework,
> > you must then register the ASP.NET extensions with IIS.
> > You can do this by running the aspnet_regiis executable from:
> > %windows root directory%\Microsoft.NET\Framework\%version of the .NET
> > Framework%\aspnet_regiis -i
> > Where %windows root directory% is the directory Windows is installed to
> > (normally c:\windows or c:\winnt) and %version of the .NET Framework%
> > is the version of the .NET Framework you have installed.
> > The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and for
> > Beta 2, it's v2.0.50215.
> > It's always a good idea to try to find the answer to your question by
> > reading the documentation.
> > Yes, Read The Manual! The ASP.NET Quickstarts have many answers and
> > samples.
> > You can install a local copy of the QuickStarts by installing the
ASP.NET
> > SDK.
> > The ASP.NET 1.1 SDK is available at :
http://www.microsoft.com/downloads/...2ca6-3647-4070-
9f41-a333c6b9181d&displaylang=en
> > The ASP.NET 2.0 SDK comes with the VS.NET Beta :
> > http://lab.msdn.microsoft.com/vs2005/
> > If you can't install local copies of the ASP.NET QuickStart,
> > the ASP.NET 1.1 QuickStart is available online at :
> > http://www.asp.net/Tutorials/quickstart.aspx
> > The ASP.NET 1.1 Starter Kits are available at :
> > http://www.asp.net/Default.aspx?tabindex=8&tabid=47
> > The ASP.NET 2.0 QuickStart is available online at :
> > http://beta.asp.net/quickstart/aspnet/Default.aspx
> > The ASP.NET Beta 2 Starter Kits are available at :
> > http://www.asp.net/vwd/starterkits...ndex=4&tabId=46
> > Always try to find an answer by experimenting with the code.
> > The .NET Framework Class Browser is of great assistance to help you do
> > this.
> > The .NET Framework 1.1 Class Browser is available at :
> > http://www.dotnetjunkies.com/sample...assBrowser.aspx
> > and also at :
http://www.csharpfriends.com/quicks...browser/vb/clas
sbrowser.aspx
> > The .NET Framework 2.0 Class Browser is available at :
> > http://beta.asp.net/quickstart/util/classbrowser.aspx
> > MSDN has all the ASP.NET documentation and Knowledge Base articles
online.
> > Search MSDN for ASP.NET and .Net Framework questions at:
> > http://msdn.microsoft.com/netframework/
> > Search the MSDN Visual Studio Beta 2 documentation at:
> > http://msdn2.microsoft.com/library/default.aspx
> > Major changes to ASP.NET and VS.NET going from Beta 2 --> RTM :
> > http://msdn.microsoft.com/asp.net/b...es/default.aspx
> > Obsolete APIs removed after Beta 2 :
http://www.microsoft.com/downloads/...e36b-e486-4ee3-
98b9-173c262a9f31&displaylang=en
> > 2. Newsgroup Questions
> > 2.1 What subjects are appropriate in this newsgroup?
> > Any subject which relates to programming, installing or configuring
> > ASP.NET.
> > Please don't post questions unrelated to ASP.NET.
> > ASP.NET is not the same as ASP. If you have questions relating to
"Classic
> > ASP",
> > post them in the ASP newsgroups, e.g.
> > microsoft.public.inetserver.asp.general.
> > We encourage the posting of links to free ASP.NET controls/assemblies
you
> > have developed,
> > but request that commercial product availabilities be sent to :
> > microsoft.public.dotnet.framework.aspnet.announcem ents
> > Otherwise, your post will be deleted as SPAM.
> > 2.2 How to write your post
> > a. Make the "Subject" a short, relevant summary of your problem
> > b. Make sure you describe your problem accurately.
> > Please post the exact code which is failing/generating your error.
> > That will help others find the solution to your problem.
> > c. Deal with one problem at a time.
> > If you have more than one problem, post it separately.
> > d. Make sure you include the version of ASP.NET and the
> > operating system you are using. This *really* helps others help you!
> > If the problem is a browser-related problem, include the relevant
> > browser identity and operating system information.
> > e. If you are getting an error message, include the error number and its
> > text.
> > f. Tell us what you have already tried to do to solve the problem.
> > 2.3 How not to write your post
> > a. Avoid cross-posting, unless your problem applies to more than one
> > newsgroup.
> > b. Never post identical messages with different subjects.
> > This is a sure way to get your posts ignored.
> > c. Don't post your message in ALL CAPITALS. It's very hard to read.
> > This is another sure way to get your posts ignored.
> > d. Don't use unclear subject lines which don't summarize a problem, like
> > these:
> > HEEEELLLLPPP!!!!!
> > Need help please.
> > Any experts here?
> > This is yet another sure way to get your posts ignored.
> > e. Don't ask for an email reply. The basis for peer-to-peer help
> > newsgroups
> > like this one is for *everybody* to be helped by the answers provided.
> > f. Don't flame anyone, period. Nobody needs that in technical
newsgroups.
> > If something, or someone, irks you, ignore the post.
> > Please treat all participants with respect, valuing divergent views
and
> > contrary opinions.
> > Be polite. Share your perspectives to question ideas and stimulate
> > interesting discussions.
> > g. The ASP.NET newsgroups, like all Microsoft public ng's, are
> > unmoderated.
> > From time to time, there will be totally off-topic posts from trolls,
> > spammers,
> > pornographers, etc. Please don't reply to these posts, as it's a
waste
> > of time.
> > Instead, killfile the poster if the post bothers you.
> > Microsoft has an anti-spam program in effect, and spam messages
> > are eliminated by a community program, but it's difficult to detect
> > some SPAM messages. Have patience and don't reply to any SPAM
message.
> > We will get to it, and delete it.
> > 2.4 Dealing with replies to your post
> > a. Trim unnecessary text from the replies to your posts, leaving just
> > enough to
> > get the context of the reply and the original problem. This is greatly
> > appreciated by the people who are trying to help you, since it saves
> > them time.
> > b. Analyze the suggestion you were given, and test to see whether it
> > solves the problem.
> > c. If the problem isn't solved by the suggestion, explain why in a
> > follow-up reply.
> > 2.5 After you get your answer...
> > a. Confirm whether the proposed solution worked or not.
> > b. Thank the poster who gave you the answer to your question.
> > For people who spend their free time, unpaid, helping others in
> > peer-to-peer newsgroups, there's nothing better than to get a "Thank
> > you".
> > Your "Thank you" is also helpful to others reading about your problem
> > because they see that the solution sent to you *did* work.
> > ASP.NET links :
> > Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/
> > ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/
> > ASP.NET Developer Center Archive :
> > http://msdn.microsoft.com/asp.net/archive/default.aspx
> > ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )
> > ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351
> > ASP.NET Security Practices :
> > http://msdn.microsoft.com/library/e...actices0001.asp
> > ASP.NET Security How Tos :
http://msdn.microsoft.com/library/e...HowTosIndex.asp
> > ADO.NET Support Center : http://support.microsoft.com/adonet
> > SQL Server Developer Center : http://msdn.microsoft.com/SQL/
> > IIS Tips and Hints : http://www.asp.net/Default.aspx?tabindex=9&tabid=48
> > Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and
not
> > in this ASP.NET newsgroup.
> > ASP.NET 2.0 questions can be posted either here or at :
> > http://forums.asp.net/default.aspx?ForumGroupID=26
> > Official FAQs and Developer Resources :
> > ASP.NET Beta 2 FAQ :
> > http://msdn.microsoft.com/asp.net/b...aq/default.aspx
> > .Net Framework Developer Center :
http://msdn.microsoft.com/netframework/
> > VB Developer Center : http://msdn.microsoft.com/vbasic/
> > C# Developer Center : http://msdn.microsoft.com/vcsharp/
> > J# Developer Center : http://msdn.microsoft.com/vjsharp/
> > New ASP.NET Developer? See :
> > http://msdn.microsoft.com/asp.net/l...wtodevelopment/
> > Free Learning Courses from Microsoft :
> > http://lab.msdn.microsoft.com/vs2005/learning/
> > ASP.NET Webcasts at MSDN :
> > http://www.microsoft.com/events/ser...naspnetoct.mspx
> > Fritz Onion's Essential ASP.NET Webcasts :
> > http://www.microsoft.com/events/ser...tialaspnet.mspx
> > Selected MSDN Technical Articles on ASP.NET :
> > http://msdn.microsoft.com/asp.net/articles/default.aspx
> > Full Index to MSDN ASP.NET articles :
> > http://msdn.microsoft.com/asp.net/archive/default.aspx
> > Free Online Book : Improving .Net Application Performance and
Scalability:
> > http://msdn.microsoft.com/library/e...ml/scalenet.asp
> > Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's
public
> > nntp server ):
> > microsoft.public.dotnet.framework.aspnet
> > microsoft.public.dotnet.framework.aspnet.security
> > microsoft.public.dotnet.framework.aspnet.caching
> > microsoft.public.dotnet.framework.aspnet.webservic es
> > microsoft.public.dotnet.framework.aspnet.buildingc ontrols
> > microsoft.public.dotnet.framework.aspnet.webcontro ls
> > microsoft.public.dotnet.framework.aspnet.datagridc ontrol
> > microsoft.public.dotnet.framework.aspnet.announcem ents
> > The general .NET Framework newsgroup is :
> > microsoft.public.dotnet.framework
> > The ADO.NET newsgroup is : microsoft.public.dotnet.framework.adonet
> > The newsgroups for SQL Server and MSDE are :
> > microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde
> > If you have a question which would fit better at one of the
> > above newsgroups, consider posting it in the appropiate one(s).
> > You can also use the HTML interface to the Microsoft Discussion Groups :
> > http://www.microsoft.com/communitie...us/default.aspx
> > Other FAQs and Developer Resources :
> > Connection Strings : http://www.connectionstrings.com/
> > SQL Server Forums : http://www.sqlmonster.com/
> > DotNetJunkies : http://www.dotnetjunkies.com/
> > ASP.NET at 4GuysFromRolla : http://aspnet.4guysfromrolla.com/
> > ASP.NET at the ASP Alliance :
> > http://aspalliance.com/articles/LearnASPNET.aspx
> > http://aspalliance.com/articles/LearnControls.aspx
> > Wintellect's ASP.NET FAQ :
> > http://www.wintellect.com/resources...t.aspx?faq_id=1
> > W3Schools ASP.NET Tutorial : http://www.w3schools.com/aspnet/default.asp
> > Egghead Cafe : http://www.eggheadcafe.com/default.asp
> > 123aspx ASP.NET Directory : http://www.123aspx.com/
> > 411 ASP.NET Resource Directory : http://www.411asp.net/
> > .NET 247 Assembly References and Discussions :
> > http://www.dotnet247.com/247reference/default.aspx
> > .Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm
> > Bill Evjen's "Learn ASP.NET" page :
> > http://www.geekswithblogs.net/evjen...earnaspnet.aspx
> > Jon Skeet's C# FAQ and articles : http://www.yoda.arachsys.com/csharp/
> > OdeToCode.com
> > Articles : http://odetocode.com/Articles/default.aspx
> > Resources : http://odetocode.com/Resources/default.aspx
> > Karl Seguin's ASP.NET articles :
http://www.openmymind.net/MyArticles.aspx
> > Steve Orr's list of free controls : http://steveorr.net/freecontrols/
> > C# FAQ for C++ programmers : http://www.andymcm.com/csharpfaq.htm
> > Free eBook : VB.NET Fundamentals, Sheriff and Getz :
http://platform.innerworkings.com/p...undamentals.msi
> > Free Computer Science books and lecture notes :
> > http://www.freetechbooks.com/
> > ASP.NET Version Switcher :
> > http://www.denisbauer.com/NETTools/...onSwitcher.aspx
> > Interesting Blogs for ASP.NET Developers:
> > Scott Guthrie : http://weblogs.asp.net/scottgu
> > Dino Esposito : http://weblogs.asp.net/despos
> > Scott Mitchell : http://www.scottonwriting.net/
> > Brock Allen : http://staff.develop.com/ballen/blog/
> > Bill Evjen : http://www.geekswithblogs.net/evjen
> > Rick Strahl : http://west-wind.com/weblog/
> > Rob Howard : http://weblogs.asp.net/rhoward/
> > Scott Watermasysk : http://scottwater.com/blog/default.aspx
> > Nikhil Kothari : http://www.nikhilk.net/
> > G. Andrew Duthie : http://blogs.msdn.com/gduthie/
> > Steven Smith : http://blogs.aspadvice.com/ssmith/
> > Kent Sharkey : http://www.acmebinary.com/blogs/kent
> > We are working on a FAQ for specific programming questions.
> > When it's ready, we will include a link to it in this FAQ.
Ewwk!

I guess that surely makes you the person to ask questions of then.

Thanks ! - Mr Newbie

"Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
news:OuromIRvFHA.3932@dotnet.itags.org.TK2MSFTNGP15.phx.gbl...
> re:
>> it left me wondering if you are someone in authority (Microsoft Employee
> My only "authority" is having dealt with ASP.NET since pre-beta,
> and with ASP since pre-beta, since 1997.
> I have also co-authored a few books on the subjects :
> http://www.amazon.com/exec/obidos/s...0T.%20%20Llibre
> That might confer me some "authority", too. ;-)
> MVPs cannot be Microsoft employees, btw.
> re:
>> you just thought you would post this for general consumption.
> Yes I did, primarily as a guide for ASP.NET newbies.
> The online version is at : http://asp.net.do/faq/
> re:
>> Also, where did this FAQ come from ?
> I wrote most of it.
> A couple of friendly guys who frequent this newsgroup reviewed it
> and made some very much on-target suggestions for improvement.
> I took their advice and corrected what concerned them.
> If you have any suggestions/corrections/additions for the FAQ, please
> email me.
> The email address is both on the FAQ posted and at the website.
> btw, the Q & A portion of the FAQ will be ready shortly.
> There's already some 200 questions and answers in it.
> I will post the URL here as soon as it's ready.
> best regards,
>
> Juan T. Llibre, ASP.NET MVP
> ASP.NET FAQ : http://asp.net.do/faq/
> Foros de ASP.NET en Espaol : http://asp.net.do/foros/
> ======================================
> "Mr Newbie" <here@dotnet.itags.org.now.com> wrote in message
> news:O7ep$yQvFHA.2312@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>> Just out of interest, you posted this comprehensive FAQ for the group,
>> but it left me wondering if you are someone in authority ( Microsoft
>> Employee etc ) or have you just thought you would post this for general
>> consumption. Also, where did this FAQ come from ?
>>
>> Regards - Mr Newbie.
>> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
>> news:Ov%23TVnQvFHA.596@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
>>> Welcome to the ASP.NET FAQ.
>>>
>>> The online version of this FAQ is at http://asp.net.do/faq/
>>> We are working on a FAQ for specific programming questions.
>>> When it's ready, we will include a link to it in this FAQ.
Was not a knock, just a question is all !

"Patrick.O.Ige" <patrickige@dotnet.itags.org.optusnet.com.au> wrote in message
news:uhJDhLRvFHA.3984@dotnet.itags.org.TK2MSFTNGP09.phx.gbl...
> Be happy somone took is time to do it first
> Patrick
> "Mr Newbie" <here@dotnet.itags.org.now.com> wrote in message
> news:O7ep$yQvFHA.2312@dotnet.itags.org.TK2MSFTNGP14.phx.gbl...
>> Just out of interest, you posted this comprehensive FAQ for the group,
>> but
>> it left me wondering if you are someone in authority ( Microsoft Employee
>> etc ) or have you just thought you would post this for general
> consumption.
>> Also, where did this FAQ come from ?
>>
>> Regards - Mr Newbie.
>>
>> "Juan T. Llibre" <nomailreplies@dotnet.itags.org.nowhere.com> wrote in message
>> news:Ov%23TVnQvFHA.596@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
>> > Welcome to the ASP.NET FAQ.
>>> > The online version of this FAQ is at http://asp.net.do/faq/
>> > Bookmark it!
>>> > Thank you for reading this FAQ!
>> > Use it to improve your online experience.
>>> > The Microsoft Public Newsgroups allow users of Microsoft products to
>> > exchange technical
>> > information and expertise. Please avoid personal attacks, slurs and
>> > profanity in your posts.
>>> > A FAQ is a list of Frequently Answered Questions;
>> > This is a guide to using this newsgroup intelligently in order to find
>> > answers to your ASP.NET questions.
>>> > The kind of answer you get to your questions depends on the way
>> > you ask the questions as well as on the difficulty of writing the
> answer.
>>> > This FAQ will show you how to ask questions in a way that is likely to
> get
>> > you the answer you want to get : the right answer.
>>> > You have to do your part, too, if this is going to work out in such a
> way
>> > that you *learn* what you need to learn, instead of getting ready-made
>> > answers
>> > which you will promptly forget and need to ask for them again.
>>> > With that in mind, the first FAQ recommendation is that you use search
>> > engines
>> > to find out if the question you intend to ask has been already answered
> in
>> > newsgroups.
>>> > Use resources like :
>>> > Google Groups Advanced Search (
>> > http://groups.google.com/advanced_group_search )
>> > MSN Search ( http://www.msn.com/ )
>>> > to search for the text of the problem which is stumping you,
>> > and save everybody the waste of time that asking a FAQ entails.
>>> > Remember : thousands of programmers will read your post. Be considerate
> of
>> > their time.
>>> > 1. General ASP.NET Questions
>>> > 1.1 What is ASP.NET?
>>> > ASP.NET is a technology for creating dynamic Web pages which uses the
> .Net
>> > Framework.
>>> > You can author applications in any .NET compatible language, including
>> > Visual Basic .NET,
>> > C#, and JScript .NET, and many others listed at
>> > http://www.dotnetpowered.com/languages.aspx .
>>> > 1.2 Where can I get ASP.NET?
>>> > You can get ASP.NET by installing the Microsoft .NET Framework on a
>> > computer which has IIS installed.
>> > The .NET Framework is available in either a redistributable or SDK
> format.
>>> > ASP.NET 2.0, currently in Beta, will be released the first week in
>> > November, 2005.
>>> > 1.3 I've installed the .NET Framework, but ASP.NET doesn't seem to
>> > work.
>> > What can I do to fix it?
>>> > You must install IIS before you install the .NET Framework.
>>> > If you install IIS after you install the .NET Framework,
>> > you must then register the ASP.NET extensions with IIS.
>>> > You can do this by running the aspnet_regiis executable from:
>> > %windows root directory%\Microsoft.NET\Framework\%version of the .NET
>> > Framework%\aspnet_regiis -i
>>> > Where %windows root directory% is the directory Windows is installed to
>> > (normally c:\windows or c:\winnt) and %version of the .NET Framework%
>> > is the version of the .NET Framework you have installed.
>>> > The directory for .NET 1.0 is v1.0.3705 ; for 1.1 it's v1.1.4322 and
>> > for
>> > Beta 2, it's v2.0.50215.
>>> > It's always a good idea to try to find the answer to your question by
>> > reading the documentation.
>> > Yes, Read The Manual! The ASP.NET Quickstarts have many answers and
>> > samples.
>>> > You can install a local copy of the QuickStarts by installing the
> ASP.NET
>> > SDK.
>>> > The ASP.NET 1.1 SDK is available at :
>> http://www.microsoft.com/downloads/...2ca6-3647-4070-
> 9f41-a333c6b9181d&displaylang=en
>>> > The ASP.NET 2.0 SDK comes with the VS.NET Beta :
>> > http://lab.msdn.microsoft.com/vs2005/
>>> > If you can't install local copies of the ASP.NET QuickStart,
>>> > the ASP.NET 1.1 QuickStart is available online at :
>> > http://www.asp.net/Tutorials/quickstart.aspx
>>> > The ASP.NET 1.1 Starter Kits are available at :
>> > http://www.asp.net/Default.aspx?tabindex=8&tabid=47
>>> > The ASP.NET 2.0 QuickStart is available online at :
>> > http://beta.asp.net/quickstart/aspnet/Default.aspx
>>> > The ASP.NET Beta 2 Starter Kits are available at :
>> > http://www.asp.net/vwd/starterkits...ndex=4&tabId=46
>>> > Always try to find an answer by experimenting with the code.
>> > The .NET Framework Class Browser is of great assistance to help you do
>> > this.
>>> > The .NET Framework 1.1 Class Browser is available at :
>> > http://www.dotnetjunkies.com/sample...assBrowser.aspx
>> > and also at :
>> http://www.csharpfriends.com/quicks...browser/vb/clas
> sbrowser.aspx
>>> > The .NET Framework 2.0 Class Browser is available at :
>> > http://beta.asp.net/quickstart/util/classbrowser.aspx
>>> > MSDN has all the ASP.NET documentation and Knowledge Base articles
> online.
>>> > Search MSDN for ASP.NET and .Net Framework questions at:
>> > http://msdn.microsoft.com/netframework/
>>> > Search the MSDN Visual Studio Beta 2 documentation at:
>> > http://msdn2.microsoft.com/library/default.aspx
>>> > Major changes to ASP.NET and VS.NET going from Beta 2 --> RTM :
>> > http://msdn.microsoft.com/asp.net/b...es/default.aspx
>> > Obsolete APIs removed after Beta 2 :
>> http://www.microsoft.com/downloads/...e36b-e486-4ee3-
> 98b9-173c262a9f31&displaylang=en
>>> > 2. Newsgroup Questions
>>> > 2.1 What subjects are appropriate in this newsgroup?
>>> > Any subject which relates to programming, installing or configuring
>> > ASP.NET.
>> > Please don't post questions unrelated to ASP.NET.
>>> > ASP.NET is not the same as ASP. If you have questions relating to
> "Classic
>> > ASP",
>> > post them in the ASP newsgroups, e.g.
>> > microsoft.public.inetserver.asp.general.
>>> > We encourage the posting of links to free ASP.NET controls/assemblies
> you
>> > have developed,
>> > but request that commercial product availabilities be sent to :
>>> > microsoft.public.dotnet.framework.aspnet.announcem ents
>>> > Otherwise, your post will be deleted as SPAM.
>>> > 2.2 How to write your post
>>> > a. Make the "Subject" a short, relevant summary of your problem
>>> > b. Make sure you describe your problem accurately.
>> > Please post the exact code which is failing/generating your error.
>> > That will help others find the solution to your problem.
>>> > c. Deal with one problem at a time.
>> > If you have more than one problem, post it separately.
>>> > d. Make sure you include the version of ASP.NET and the
>> > operating system you are using. This *really* helps others help you!
>>> > If the problem is a browser-related problem, include the relevant
>> > browser identity and operating system information.
>>> > e. If you are getting an error message, include the error number and
>> > its
>> > text.
>>> > f. Tell us what you have already tried to do to solve the problem.
>>> > 2.3 How not to write your post
>>> > a. Avoid cross-posting, unless your problem applies to more than one
>> > newsgroup.
>>> > b. Never post identical messages with different subjects.
>> > This is a sure way to get your posts ignored.
>>> > c. Don't post your message in ALL CAPITALS. It's very hard to read.
>> > This is another sure way to get your posts ignored.
>>> > d. Don't use unclear subject lines which don't summarize a problem,
>> > like
>> > these:
>>> > HEEEELLLLPPP!!!!!
>> > Need help please.
>> > Any experts here?
>>> > This is yet another sure way to get your posts ignored.
>>> > e. Don't ask for an email reply. The basis for peer-to-peer help
>> > newsgroups
>> > like this one is for *everybody* to be helped by the answers
>> > provided.
>>> > f. Don't flame anyone, period. Nobody needs that in technical
> newsgroups.
>> > If something, or someone, irks you, ignore the post.
>>> > Please treat all participants with respect, valuing divergent views
> and
>> > contrary opinions.
>> > Be polite. Share your perspectives to question ideas and stimulate
>> > interesting discussions.
>>> > g. The ASP.NET newsgroups, like all Microsoft public ng's, are
>> > unmoderated.
>>> > From time to time, there will be totally off-topic posts from
>> > trolls,
>> > spammers,
>> > pornographers, etc. Please don't reply to these posts, as it's a
> waste
>> > of time.
>>> > Instead, killfile the poster if the post bothers you.
>>> > Microsoft has an anti-spam program in effect, and spam messages
>> > are eliminated by a community program, but it's difficult to detect
>> > some SPAM messages. Have patience and don't reply to any SPAM
> message.
>>> > We will get to it, and delete it.
>>> > 2.4 Dealing with replies to your post
>>> > a. Trim unnecessary text from the replies to your posts, leaving just
>> > enough to
>> > get the context of the reply and the original problem. This is
>> > greatly
>> > appreciated by the people who are trying to help you, since it saves
>> > them time.
>>> > b. Analyze the suggestion you were given, and test to see whether it
>> > solves the problem.
>>> > c. If the problem isn't solved by the suggestion, explain why in a
>> > follow-up reply.
>>> > 2.5 After you get your answer...
>>> > a. Confirm whether the proposed solution worked or not.
>>> > b. Thank the poster who gave you the answer to your question.
>>> > For people who spend their free time, unpaid, helping others in
>> > peer-to-peer newsgroups, there's nothing better than to get a "Thank
>> > you".
>>> > Your "Thank you" is also helpful to others reading about your problem
>> > because they see that the solution sent to you *did* work.
>>> > ASP.NET links :
>>> > Learning ASP.NET : http://msdn.microsoft.com/asp.net/learn/
>>> > ASP.NET Developer Center : http://msdn.microsoft.com/asp.net/
>>> > ASP.NET Developer Center Archive :
>> > http://msdn.microsoft.com/asp.net/archive/default.aspx
>>> > ASP.NET Forums : http://forums.asp.net/ ( Online ASP.NET Forum )
>>> > ASP.NET 1.1 Support Center : http://support.microsoft.com/ph/6351
>>> > ASP.NET Security Practices :
>> > http://msdn.microsoft.com/library/e...actices0001.asp
>>> > ASP.NET Security How Tos :
>> http://msdn.microsoft.com/library/e...HowTosIndex.asp
>>> > ADO.NET Support Center : http://support.microsoft.com/adonet
>>> > SQL Server Developer Center : http://msdn.microsoft.com/SQL/
>>> > IIS Tips and Hints :
>> > http://www.asp.net/Default.aspx?tabindex=9&tabid=48
>>> > Please ask VS2005 questions at http://forums.microsoft.com/msdn/ , and
> not
>> > in this ASP.NET newsgroup.
>>> > ASP.NET 2.0 questions can be posted either here or at :
>> > http://forums.asp.net/default.aspx?ForumGroupID=26
>>> > Official FAQs and Developer Resources :
>>> > ASP.NET Beta 2 FAQ :
>> > http://msdn.microsoft.com/asp.net/b...aq/default.aspx
>>> > .Net Framework Developer Center :
> http://msdn.microsoft.com/netframework/
>>> > VB Developer Center : http://msdn.microsoft.com/vbasic/
>>> > C# Developer Center : http://msdn.microsoft.com/vcsharp/
>>> > J# Developer Center : http://msdn.microsoft.com/vjsharp/
>>> > New ASP.NET Developer? See :
>> > http://msdn.microsoft.com/asp.net/l...wtodevelopment/
>>> > Free Learning Courses from Microsoft :
>> > http://lab.msdn.microsoft.com/vs2005/learning/
>>> > ASP.NET Webcasts at MSDN :
>> > http://www.microsoft.com/events/ser...naspnetoct.mspx
>>> > Fritz Onion's Essential ASP.NET Webcasts :
>> > http://www.microsoft.com/events/ser...tialaspnet.mspx
>>> > Selected MSDN Technical Articles on ASP.NET :
>> > http://msdn.microsoft.com/asp.net/articles/default.aspx
>>> > Full Index to MSDN ASP.NET articles :
>> > http://msdn.microsoft.com/asp.net/archive/default.aspx
>>> > Free Online Book : Improving .Net Application Performance and
> Scalability:
>> > http://msdn.microsoft.com/library/e...ml/scalenet.asp
>>> > Dedicated ASP.NET newsgroups at msnews.microsoft.com ( Microsoft's
> public
>> > nntp server ):
>>> > microsoft.public.dotnet.framework.aspnet
>> > microsoft.public.dotnet.framework.aspnet.security
>> > microsoft.public.dotnet.framework.aspnet.caching
>> > microsoft.public.dotnet.framework.aspnet.webservic es
>> > microsoft.public.dotnet.framework.aspnet.buildingc ontrols
>> > microsoft.public.dotnet.framework.aspnet.webcontro ls
>> > microsoft.public.dotnet.framework.aspnet.datagridc ontrol
>> > microsoft.public.dotnet.framework.aspnet.announcem ents
>>> > The general .NET Framework newsgroup is :
>> > microsoft.public.dotnet.framework
>>> > The ADO.NET newsgroup is : microsoft.public.dotnet.framework.adonet
>>> > The newsgroups for SQL Server and MSDE are :
>> > microsoft.public.sqlserver.server and microsoft.public.sqlserver.msde
>>> > If you have a question which would fit better at one of the
>> > above newsgroups, consider posting it in the appropiate one(s).
>>> > You can also use the HTML interface to the Microsoft Discussion Groups
>> > :
>> > http://www.microsoft.com/communitie...us/default.aspx
>>> > Other FAQs and Developer Resources :
>>> > Connection Strings : http://www.connectionstrings.com/
>>> > SQL Server Forums : http://www.sqlmonster.com/
>>> > DotNetJunkies : http://www.dotnetjunkies.com/
>>> > ASP.NET at 4GuysFromRolla : http://aspnet.4guysfromrolla.com/
>>> > ASP.NET at the ASP Alliance :
>> > http://aspalliance.com/articles/LearnASPNET.aspx
>> > http://aspalliance.com/articles/LearnControls.aspx
>>> > Wintellect's ASP.NET FAQ :
>> > http://www.wintellect.com/resources...t.aspx?faq_id=1
>>> > W3Schools ASP.NET Tutorial :
>> > http://www.w3schools.com/aspnet/default.asp
>>> > Egghead Cafe : http://www.eggheadcafe.com/default.asp
>>> > 123aspx ASP.NET Directory : http://www.123aspx.com/
>>> > 411 ASP.NET Resource Directory : http://www.411asp.net/
>>> > .NET 247 Assembly References and Discussions :
>> > http://www.dotnet247.com/247reference/default.aspx
>>> > .Net Framework FAQ : http://www.andymcm.com/dotnetfaq.htm
>>> > Bill Evjen's "Learn ASP.NET" page :
>> > http://www.geekswithblogs.net/evjen...earnaspnet.aspx
>>> > Jon Skeet's C# FAQ and articles : http://www.yoda.arachsys.com/csharp/
>>> > OdeToCode.com
>> > Articles : http://odetocode.com/Articles/default.aspx
>> > Resources : http://odetocode.com/Resources/default.aspx
>>> > Karl Seguin's ASP.NET articles :
> http://www.openmymind.net/MyArticles.aspx
>>> > Steve Orr's list of free controls : http://steveorr.net/freecontrols/
>>> > C# FAQ for C++ programmers : http://www.andymcm.com/csharpfaq.htm
>>> > Free eBook : VB.NET Fundamentals, Sheriff and Getz :
>> http://platform.innerworkings.com/p...undamentals.msi
>>> > Free Computer Science books and lecture notes :
>> > http://www.freetechbooks.com/
>>> > ASP.NET Version Switcher :
>> > http://www.denisbauer.com/NETTools/...onSwitcher.aspx
>>> > Interesting Blogs for ASP.NET Developers:
>>> > Scott Guthrie : http://weblogs.asp.net/scottgu
>> > Dino Esposito : http://weblogs.asp.net/despos
>> > Scott Mitchell : http://www.scottonwriting.net/
>> > Brock Allen : http://staff.develop.com/ballen/blog/
>> > Bill Evjen : http://www.geekswithblogs.net/evjen
>> > Rick Strahl : http://west-wind.com/weblog/
>> > Rob Howard : http://weblogs.asp.net/rhoward/
>> > Scott Watermasysk : http://scottwater.com/blog/default.aspx
>> > Nikhil Kothari : http://www.nikhilk.net/
>> > G. Andrew Duthie : http://blogs.msdn.com/gduthie/
>> > Steven Smith : http://blogs.aspadvice.com/ssmith/
>> > Kent Sharkey : http://www.acmebinary.com/blogs/kent
>>> > We are working on a FAQ for specific programming questions.
>> > When it's ready, we will include a link to it in this FAQ.
>>>
>>
>Was not a knock, just a question is all !

If you look back through the recent postings here, you'll see that the
main input for the FAQ came from a recognised expert in the field, with
peer review and suggestions from other people here.

The fact is that there are enough knowledgeable people here who have
looked at it, that if there were any mistakes, they would have been
spotted and fixed by now.

Hope that answers your question ;-)

--
Alan Silver
(anything added below this line is nothing to do with me)