Hi all,

I am very very new to asp and am trying to get started fast. How do you
develope asp pages: do you open a text document and start typing codes? Or
is there a tool you use to develope asp pages.

I would appreciate any tips, advise you can give me.

Thank you,

Re: Very very newbie ? by Ray

Ray
Tue Jul 20 15:02:32 CDT 2004

Some people use an ordinary text editor, and some people use a full
development suite like Visual Studio.
http://www.aspfaq.com/show.asp?id=2500

Ray at work

"Hasan Kachal" <kachal@nospam.com> wrote in message
news:%2326IPKpbEHA.368@TK2MSFTNGP10.phx.gbl...
> Hi all,
>
> I am very very new to asp and am trying to get started fast. How do you
> develope asp pages: do you open a text document and start typing codes?
> Or
> is there a tool you use to develope asp pages.
>
> I would appreciate any tips, advise you can give me.
>
> Thank you,
>
>



Re: Very very newbie ? by Tim

Tim
Tue Jul 20 15:06:12 CDT 2004

"Hasan Kachal" <kachal@nospam.com> wrote:

>Hi all,
>
>I am very very new to asp and am trying to get started fast. How do you
>develope asp pages: do you open a text document and start typing codes? Or
>is there a tool you use to develope asp pages.

Right the first time. Open a text editor and start typing.

There are some specialized editors (HomeSite comes to mind, there are
plenty of others) that will display your HTML tags, JavaScript code,
VBScript code, etc in different colors, and even automatically
complete tags for you. All icing on the cake. All that's really needed
is a text editor.

--
Tim Slattery
MS MVP(DTS)
Slattery_T@bls.gov

Re: Very very newbie ? by larrybud2002

larrybud2002
Wed Jul 21 12:21:11 CDT 2004

"Hasan Kachal" <kachal@nospam.com> wrote in message news:<#26IPKpbEHA.368@TK2MSFTNGP10.phx.gbl>...
> Hi all,
>
> I am very very new to asp and am trying to get started fast. How do you
> develope asp pages: do you open a text document and start typing codes? Or
> is there a tool you use to develope asp pages.
>
> I would appreciate any tips, advise you can give me.

All of the above. WSIWYG editors speed up development. I'll probably
get flamed, but for development in our intranet I use Frontpage 2k3.
It's now got some great features such as a split view of HTML and
Editing mode, syntax highlighting, etc.

How, if you've never even done HTML and are just messing around trying
to learn it, you really SHOULD just use a text editor. That way
you'll learn the proper HTML tags, such as for tables, which is
necessary because you'll most likely need to insert your ASP into the
proper places in the HTML, such as a retrieve from a database table
into HTML.

If you're quite versed in HTML, it's going to be much more tedious
doing it this way, and that's why I use FrontPage. If I want a table
6 columns by 3 rows, I can create it in 2 seconds, then insert my
HTML. If I want to format the text, I use the frontpage editor
instead of typing in the HTML.

Re: Very very newbie ? by Hasan

Hasan
Wed Jul 21 14:04:41 CDT 2004

Thank you all for your input. I'll probably use Visual Studio. I am well
versed in SQL and have done some HTML.

"Larry Bud" <larrybud2002@yahoo.com> wrote in message
news:5db363e0.0407210921.30874adf@posting.google.com...
> "Hasan Kachal" <kachal@nospam.com> wrote in message
news:<#26IPKpbEHA.368@TK2MSFTNGP10.phx.gbl>...
> > Hi all,
> >
> > I am very very new to asp and am trying to get started fast. How do you
> > develope asp pages: do you open a text document and start typing codes?
Or
> > is there a tool you use to develope asp pages.
> >
> > I would appreciate any tips, advise you can give me.
>
> All of the above. WSIWYG editors speed up development. I'll probably
> get flamed, but for development in our intranet I use Frontpage 2k3.
> It's now got some great features such as a split view of HTML and
> Editing mode, syntax highlighting, etc.
>
> How, if you've never even done HTML and are just messing around trying
> to learn it, you really SHOULD just use a text editor. That way
> you'll learn the proper HTML tags, such as for tables, which is
> necessary because you'll most likely need to insert your ASP into the
> proper places in the HTML, such as a retrieve from a database table
> into HTML.
>
> If you're quite versed in HTML, it's going to be much more tedious
> doing it this way, and that's why I use FrontPage. If I want a table
> 6 columns by 3 rows, I can create it in 2 seconds, then insert my
> HTML. If I want to format the text, I use the frontpage editor
> instead of typing in the HTML.