How can I wirte ASP applications???

A

Arturo Toledo

Yes, I know I am a beginner hahaha. Anyway.

I´ve been studyng ASP and web xml service development. I use Visual Basic
..NET STANDARD Edition...
Everytime I need to tryout a script or module I get asked by VS to install
that on a virtual server in my computer... that´s supposed to be done with
IIS adn I guess I don´t have that installed so I can´t do any testing... Do
you have any resources on the net to learn how to do this??? I don´t know
If this IIS is included with my Standard Edition of VB . NET...

Thanks!

Arturo
 
M

Mike Hildner

What OS are you using - IIS ships with the OS, not VS.NET.

If you have an OS that supports it, you can install by add/remove programs,
add windows component.

I'm not sure if VS standard is limited in any way for what you want to do,
but MS's site has that info (somewhere)

HTH,
Mike
 
A

Arturo Toledo

Thanks. I was able to install IIS with my WinXP CD.
I can now create ASP stuff. I do know the Standard Edition is limited in
web development. I´ll check it out and see If I´ll need to go up
Professional. Might wait for Whidbey though... Web Matrix is also a good
advice. Thanks!

Arturo
 
C

Chris Dunaway

web development. I´ll check it out and see If I´ll need to go up
Professional. Might wait for Whidbey though... Web Matrix is also a good
advice. Thanks!

One nice thing about Web Matrix is that you don't need IIS. It has its own
built in server for testing web apps.

Whidbey has the Visual Web Designer which is almost the same as Web Matrix
but with added functionality.

Whidbey is going to be pretty cool.
 
C

Cor

Hi Herfried,

That you can also not with the Web Matrix, and therefore VB.net standard is
a better approach I think.

Cor
 
C

Cor

Hi Chris,

Did you see things that are more in the Matrix designer than in the
Visual.Studio.Web designer

For me it is just a copy of a small part of the visual.studio.webdesigner

Without by instance servercontrols and aspx.vb code.

I did not look that long, but I did not see more than in VB.net

The only thing that you can say is about that IIS when you not are working
on a professional NT/x version.

Cor
 
C

CJ Taylor

Thats doesn't make sense...

After all isn't a web control simply something that inherits from
System.Web.UI.Control? Which is part of the .NET framework?

so couldn't your write your own inherited class to do so? and then just
design the ascx around it to inherit from your compliled class? Is that
limited by the compiler?

-CJ
 
C

CJ Taylor

Cor said:
Hi Chris,

Did you see things that are more in the Matrix designer than in the
Visual.Studio.Web designer
Cor.has.been.programming.dot.net.too.long.com.org.edu

=)


For me it is just a copy of a small part of the visual.studio.webdesigner

Without by instance servercontrols and aspx.vb code.

I did not look that long, but I did not see more than in VB.net

The only thing that you can say is about that IIS when you not are working
on a professional NT/x version.

Cor
 
H

Herfried K. Wagner [MVP]

* "CJ Taylor said:
After all isn't a web control simply something that inherits from
System.Web.UI.Control? Which is part of the .NET framework?

I never wrote an ASP.NET web control... I don't know. I am interested
in the answer too...
 
C

CJ Taylor

one of those times Microsoft could go ahead and jump in and answer that
question for us. =)

I've developed a lot of web apps (good portion .NET now, mainly working with
SharePoint and DNN,Rainbow,IBS,Schwing) and the structure of ASP.NET is
pretty simple.

If you have ever studied MVC, you see where microsoft gets there ideas from
on it. Though its not a true MVC Architcture (though, it sorta is... you
don't really have to write the controller persay, the event wireup handles
that portion of it... which is nice, take that Java!) its still functions in
the fact you separate your presentation from your other logic. and ASP.NET
enforces this by

a) an ASCX file is nothing but html...
b) it just sets a Inherits in the page declaration above, this must inherit
from System.Web.UI.Control (pretty sure thats right), after that its all
gravy and property binding...

This is the point at which i see the similarities between Java's
Velocity/Struts/Swing/wahtever frameworks and a lot of the external
frameworks (DNN,Rainbow,IBS,etc) that exist...

So the only way I could see the limitation existing in VB.NET Standard would
be

a) the MDE/IDE doesn't support the ability to build web user controls
VISUALLY.
b) the compiler won't compile anything that inherits from .Control... which
would be the dumbest thing I've ever heard of. so like you herfried, I
would like to see if this is an actual limitation or a "placebo" if you
will.

=)

-CJ
 
A

Arturo Toledo

The only reason I see for someone to use Web Matrix is because it´s free.
(more than a good reason for a bunch of people), but with Visual Studio web
development you can do everything you can with Web Matrix. WM is on the
other hand more than enough to develop good web apps. I have been able to
use my VB NET Standard without web matrix and it´s all good.

Arturo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top