Saturday, March 31, 2012

What is neccessary?

Anyone's response would be appreciated.

I am a rookie on asp.net,I wanna use VB to write my website.The problem is I have no idea about which component I should install.The vb.net and theVisual web developer and .net framework?

Is that enough or only vb.net is just ok? Thanks.

Hi,

If you have Windows XP Pro as your home machine, you'd want to install IIS (Internet Information Server/Services) to it. It's available on Windows Components (Add/Remove programs tool in XP). Visual Web Developer has a built-in web server which migh suffice depending on how complex stuff you are developing.

Visual Basic .NET is one of programming languages in .NET and you get support for it by installing .NET Framework, you don't need to install anything specific in order to get it..

So to summarize:

If you want IIS, install it first. Visual Web Developer installs .NET Framework 2.0 by default, if memory serves, so basically by downloading VWD, you get all the other software you need.


Hi,

As suggested by first you will need to install IIS in your machine. Presuming that you have XP, follow the URL below which will give you step by step detail of installing IIS.

Installing IIS on Windows XP Pro

http://www.webwizguide.com/asp/tutorials/installing_iis_winXP_pro.asp

You can then install Visual Web Developer. But I will suggest to go for Visual Studio .NET instead if you really want to involve in serious web development profession. With Visual Web Developer IDE you will find very limited purview to explore and most of the stuffs can be achieved by just dragging and dropping things on page. IMO, you will not going to learn VB any thing serious using Visual Web Developer. So go for VS.NET from very beginning. This is just my suggestion.

Ok, move back to installation. With installation of VS.NET, setup will also install .NET framework for you. And so you don't need to install .NET independently.

You don't need to install other component and third party tools to develop web application. But as your project demands, you can then select thousand of third party components, developer productivity tools, application framework etc.

Regards,

Firoz Ansari


firoz.ansari wrote:

You can then install Visual Web Developer. But I will suggest to go for Visual Studio .NET instead if you really want to involve in serious web development profession. With Visual Web Developer IDE you will find very limited purview to explore and most of the stuffs can be achieved by just dragging and dropping things on page. IMO, you will not going to learn VB any thing serious using Visual Web Developer. So go for VS.NET from very beginning. This is just my suggestion.

I 100% agree if VS is available then using it is a must. But if not, and speaking about what you can do with VB (as programming language), I wouldn't totally agree with point & click view. You can write code with VWD. :-)

But of course, all these VWD tutorials etc always point the easiness, and no-code approach, so it's quite evident that you get that feeling, but it doesn't mean you couldn't learn to use VB.NET with VWD.

It's more structural & organizational stuff like having class libraries available, plus that you all these latest extensions and additions like Web Deployment Projects, Web Application projects etc etc, since they do not support VWD. So yes, that is professional stuff that you get with VS.NET.


Thanks for all your detailed reply.

So I have two options.

1.All I need is a VWD.

2.IIS + VB.net Am I right?

The second choice would be more interesting, and I am really crazy about writting code!Although the VWD is easier.

So I will choose the second.

I am a student in china.I wanna be a proficient in ASP.net.I hope we can be friends.


Zorro wrote:

So I have two options.

1.All I need is a VWD.

2.IIS + VB.net Am I right?

The second choice would be more interesting, and I am really crazy about writting code!Although the VWD is easier.

Umm, not exactly what I meant. You can have both three, and you can still write code. VWD does not prevent you writing code yourself. :-) Visual Web Developer is just IDE which you can use to develop web applications (though simpler by their nature due to previously mentioned reasons), and it supports VB, C# etc.

If you mean with VB desktop applications, you can also download VS2005 Express Editions (Visual Basic 2005 Express Edition). They are mentioned and explained behind following link:

http://msdn.microsoft.com/vstudio/express/default.aspx

What is namescape and base class in ASP.NET

Hi,
i would like to know the meaning of namespace in ASP.net?
is it something like header files in C?
any help in this regard is appreciated.
Thanks
ShekarHi there,
This should help you..
http://www.c-sharpcorner.com/Articles/NSInCSandVBNETSSK.asp
HTH

Namespaces are more like logical categorization of classes and objects.
You place each set of related classes in one namespace.

Regards

What is my website name

I am looking for a property in the page object that would return something like
"http://localhost:1530/myapp"
What property should I look for?

--
Arne Garvander
Certified Geek
Professional Data DudeOn Aug 2, 11:12 pm, Arne <A...@.discussions.microsoft.comwrote:

Quote:

Originally Posted by

I am looking for a property in the page object that would return something like
"http://localhost:1530/myapp"
What property should I look for?


Arne, you can use the Request.ServerVariables() method

http://www.4guysfromrolla.com/webtech/092298-3.shtml
"Arne" <Arne@.discussions.microsoft.comwrote in message
news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...

Quote:

Originally Posted by

>I am looking for a property in the page object that would return something
>like
"http://localhost:1530/myapp"
What property should I look for?


Request.ServerVariables["HTTP_HOST"]

--
Mark Rae
ASP.NET MVP
http://www.markrae.net
page.request.url works better
--
Arne Garvander
Certified Geek
Professional Data Dude

"Mark Rae [MVP]" wrote:

Quote:

Originally Posted by

"Arne" <Arne@.discussions.microsoft.comwrote in message
news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...
>

Quote:

Originally Posted by

I am looking for a property in the page object that would return something
like
"http://localhost:1530/myapp"
What property should I look for?


>
Request.ServerVariables["HTTP_HOST"]
>
>
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
>
>


No they don't work so well
The page.request.uri works better.
--
Arne Garvander
Certified Geek
Professional Data Dude

"Alexey Smirnov" wrote:

Quote:

Originally Posted by

On Aug 2, 11:12 pm, Arne <A...@.discussions.microsoft.comwrote:

Quote:

Originally Posted by

I am looking for a property in the page object that would return something like
"http://localhost:1530/myapp"
What property should I look for?


>
Arne, you can use the Request.ServerVariables() method
>
http://www.4guysfromrolla.com/webtech/092298-3.shtml
>
>


"Arne" <Arne@.discussions.microsoft.comwrote in message
news:6EAB5661-612F-49D6-BEBA-AE092365BD14@.microsoft.com...

Quote:

Originally Posted by

page.request.url works better


How exactly does it "work better"...?

--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim fullpathandport as string = "The full URL and port for the application root is : " & "http://" & fullappname & ":" &
port & Request.ApplicationPath & "/"

See a working example at : http://asp.net.do/test/apppath.aspx
( the last line returns the info you want ... )

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/
======================================
"Arne" <Arne@.discussions.microsoft.comwrote in message news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...

Quote:

Originally Posted by

>I am looking for a property in the page object that would return something like
"http://localhost:1530/myapp"
What property should I look for?
>
--
Arne Garvander
Certified Geek
Professional Data Dude


"Juan T. Llibre" <nomailreplies@.nowhere.comwrote in message
news:OYTlMAX1HHA.4496@.TK2MSFTNGP02.phx.gbl...

Quote:

Originally Posted by

Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim fullpathandport as string = "The full URL and port for the application
root is : " & "http://" & fullappname & ":" & port &
Request.ApplicationPath & "/"


What if it's https...?

--
Mark Rae
ASP.NET MVP
http://www.markrae.net
I don't have a server certificate handy to test this, but this should cover that :

Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim MyUrl As Uri = Request.Url
Dim fullappnameProtocolAndPort As String = "The full URL, protocol and port for the application root is : " _
& Server.HtmlEncode(MyUrl.Scheme) & "://" & fullappname & ":" & port & Request.ApplicationPath & "/"

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/
======================================
"Mark Rae [MVP]" <mark@.markNOSPAMrae.netwrote in message news:%23G2XEiZ1HHA.4428@.TK2MSFTNGP03.phx.gbl...

Quote:

Originally Posted by

"Juan T. Llibre" <nomailreplies@.nowhere.comwrote in message news:OYTlMAX1HHA.4496@.TK2MSFTNGP02.phx.gbl...
>

Quote:

Originally Posted by

>Dim fullappname as string = Request.Url.Host
>Dim port as string = Request.ServerVariables("SERVER_PORT")
>Dim fullpathandport as string = "The full URL and port for the application root is : " & "http://" & fullappname &
>":" & port & Request.ApplicationPath & "/"


>
What if it's https...?
>
>
--
Mark Rae
ASP.NET MVP
http://www.markrae.net


"Juan T. Llibre" <nomailreplies@.nowhere.comwrote in message
news:OZX4ebc1HHA.4428@.TK2MSFTNGP03.phx.gbl...

Quote:

Originally Posted by

>I don't have a server certificate handy to test this, but this should cover
>that :


I normally use something like this:

string strWebRoot = (Request.ServerVariables["HTTPS"] == "off" ? "http://" :
"https://") + Request.ServerVariables["SERVER_NAME"];

--
Mark Rae
ASP.NET MVP
http://www.markrae.net
You get portnumber, protocol
page.Request.Url.Scheme + "://" + page.Request.Url.Authority + _
"/" + page.Request.Url.Segments(1)
--
Arne Garvander
Certified Geek
Professional Data Dude

"Mark Rae [MVP]" wrote:

Quote:

Originally Posted by

"Arne" <Arne@.discussions.microsoft.comwrote in message
news:6EAB5661-612F-49D6-BEBA-AE092365BD14@.microsoft.com...
>

Quote:

Originally Posted by

page.request.url works better


>
How exactly does it "work better"...?
>
>
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
>
>


Request.ServerVariables["SERVER_NAME"]; and Request.Url.Host return the same object, right ?

You're missing the application's name and the port, per the OP's request, though.

There's many ways to skin a cat.

Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim prot as object = IIf(Request.ServerVariables("HTTPS")="on", "https://", "http://")
Dim path as String = prot.ToString() & fullappname & ":" & port & Request.ApplicationPath

...will also do the job.

:-)

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/
======================================
"Mark Rae [MVP]" <mark@.markNOSPAMrae.netwrote in message news:e7vbBhc1HHA.5796@.TK2MSFTNGP05.phx.gbl...

Quote:

Originally Posted by

"Juan T. Llibre" <nomailreplies@.nowhere.comwrote in message news:OZX4ebc1HHA.4428@.TK2MSFTNGP03.phx.gbl...
>

Quote:

Originally Posted by

>>I don't have a server certificate handy to test this, but this should cover that :


Quote:

Originally Posted by

I normally use something like this:


Quote:

Originally Posted by

string strWebRoot = (Request.ServerVariables["HTTPS"] == "off" ? "http://" : "https://") +
Request.ServerVariables["SERVER_NAME"];


Quote:

Originally Posted by

--
Mark Rae
ASP.NET MVP
http://www.markrae.net


"Juan T. Llibre" <nomailreplies@.nowhere.comwrote in message
news:eW84aAd1HHA.1164@.TK2MSFTNGP02.phx.gbl...

Quote:

Originally Posted by

Request.ServerVariables["SERVER_NAME"]; and Request.Url.Host return the
same object, right ?


Yes - AFAIK, Request.Url is just a wrapper around Request.ServerVariables...

Quote:

Originally Posted by

You're missing the application's name and the port, per the OP's request,
though.


Probably... :-)

Quote:

Originally Posted by

There's many ways to skin a cat.
>
Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim prot as object = IIf(Request.ServerVariables("HTTPS")="on",
"https://", "http://")
Dim path as String = prot.ToString() & fullappname & ":" & port &
Request.ApplicationPath
>
...will also do the job.


Indeed.

--
Mark Rae
ASP.NET MVP
http://www.markrae.net
That's very compact, Arne.

That only leaves the port to be added :

Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim fullpath as string = page.Request.Url.Scheme + "://" + page.Request.Url.Authority + ":" + port + "/" +
page.Request.Url.Segments(1)

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/
======================================
"Arne" <Arne@.discussions.microsoft.comwrote in message news:2D26E478-EB26-43E6-AA31-D7DD0118E099@.microsoft.com...

Quote:

Originally Posted by

You get portnumber, protocol
page.Request.Url.Scheme + "://" + page.Request.Url.Authority + _
"/" + page.Request.Url.Segments(1)
--
Arne Garvander
Certified Geek
Professional Data Dude
>
>
"Mark Rae [MVP]" wrote:
>

Quote:

Originally Posted by

>"Arne" <Arne@.discussions.microsoft.comwrote in message
>news:6EAB5661-612F-49D6-BEBA-AE092365BD14@.microsoft.com...
>>

Quote:

Originally Posted by

page.request.url works better


>>
>How exactly does it "work better"...?
>>
>>
>--
>Mark Rae
>ASP.NET MVP
>http://www.markrae.net
>>
>>


page.request.uri

--
<a href="http://links.10026.com/?link=http://1pakistangifts.com">Send Gifts to Pakisan at #Pakistan Gifts
Store</a| <a href="http://links.10026.com/?link=http://dotspecialists.com">Leading Software offshoring
and outsourcing service provider</a| <a
href="http://websitedesignersrus.com">Professional Websites at affordable
prices</a>
"Arne" <Arne@.discussions.microsoft.comwrote in message
news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...

Quote:

Originally Posted by

>I am looking for a property in the page object that would return something
>like
"http://localhost:1530/myapp"
What property should I look for?
>
--
Arne Garvander
Certified Geek
Professional Data Dude
>


re:
!page.request.uri

That does *not* produce what the OP requested.

The OP wants to :

1. include the port number
2. *not* include the page's name

Please review this thread. The answer has already been provided in it.

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/
======================================
"Enigma Boy" <enigma777@.pp.newsgroups.userwrote in message news:CTzti.3393$9W6.2439@.fe103.usenetserver.com...

Quote:

Originally Posted by

page.request.uri
>
--
<a href="http://links.10026.com/?link=http://1pakistangifts.com">Send Gifts to Pakisan at #Pakistan Gifts Store</a| <a
href="http://dotspecialists.com">Leading Software offshoring and outsourcing service provider</a| <a
href="http://websitedesignersrus.com">Professional Websites at affordable prices</a>
"Arne" <Arne@.discussions.microsoft.comwrote in message news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...

Quote:

Originally Posted by

>>I am looking for a property in the page object that would return something like
>"http://localhost:1530/myapp"
>What property should I look for?
>>
>--
>Arne Garvander
>Certified Geek
>Professional Data Dude
>>


>
>
>

What is my website name

I am looking for a property in the page object that would return something l
ike
"http://localhost:1530/myapp"
What property should I look for?
Arne Garvander
Certified G
Professional Data DudeOn Aug 2, 11:12 pm, Arne <A...@.discussions.microsoft.com> wrote:
> I am looking for a property in the page object that would return something
like
> "http://localhost:1530/myapp"
> What property should I look for?
Arne, you can use the Request.ServerVariables() method
http://www.4guysfromrolla.com/webtech/092298-3.shtml
"Arne" <Arne@.discussions.microsoft.com> wrote in message
news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...

>I am looking for a property in the page object that would return something
>like
> "http://localhost:1530/myapp"
> What property should I look for?
Request.ServerVariables["HTTP_HOST"]
Mark Rae
ASP.NET MVP
http://www.markrae.net
page.request.url works better
--
Arne Garvander
Certified G
Professional Data Dude
"Mark Rae [MVP]" wrote:

> "Arne" <Arne@.discussions.microsoft.com> wrote in message
> news:94C9C2BF-959D-4E36-8555-FC3D1259AA22@.microsoft.com...
>
> Request.ServerVariables["HTTP_HOST"]
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net
>
No they don't work so well
The page.request.uri works better.
--
Arne Garvander
Certified G
Professional Data Dude
"Alexey Smirnov" wrote:

> On Aug 2, 11:12 pm, Arne <A...@.discussions.microsoft.com> wrote:
> Arne, you can use the Request.ServerVariables() method
> http://www.4guysfromrolla.com/webtech/092298-3.shtml
>
"Arne" <Arne@.discussions.microsoft.com> wrote in message
news:6EAB5661-612F-49D6-BEBA-AE092365BD14@.microsoft.com...

> page.request.url works better
How exactly does it "work better"...?
Mark Rae
ASP.NET MVP
http://www.markrae.net
Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim fullpathandport as string = "The full URL and port for the application r
oot is : " & "http://" & fullappname & ":" &
port & Request.ApplicationPath & "/"
See a working example at : http://asp.net.do/test/apppath.aspx
( the last line returns the info you want ... )
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/
======================================
"Arne" <Arne@.discussions.microsoft.com> wrote in message news:94C9C2BF-959D-4E36-8555-FC3D1
259AA22@.microsoft.com...
>I am looking for a property in the page object that would return something
like
> "http://localhost:1530/myapp"
> What property should I look for?
> --
> Arne Garvander
> Certified G
> Professional Data Dude
"Juan T. Llibre" <nomailreplies@.nowhere.com> wrote in message
news:OYTlMAX1HHA.4496@.TK2MSFTNGP02.phx.gbl...

> Dim fullappname as string = Request.Url.Host
> Dim port as string = Request.ServerVariables("SERVER_PORT")
> Dim fullpathandport as string = "The full URL and port for the application
> root is : " & "http://" & fullappname & ":" & port &
> Request.ApplicationPath & "/"
What if it's https...?
Mark Rae
ASP.NET MVP
http://www.markrae.net
I don't have a server certificate handy to test this, but this should cover
that :
Dim fullappname as string = Request.Url.Host
Dim port as string = Request.ServerVariables("SERVER_PORT")
Dim MyUrl As Uri = Request.Url
Dim fullappnameProtocolAndPort As String = "The full URL, protocol and port
for the application root is : " _
& Server.HtmlEncode(MyUrl.Scheme) & "://" & fullappname & ":" & port & Reque
st.ApplicationPath & "/"
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/
======================================
"Mark Rae [MVP]" <mark@.markNOSPAMrae.net> wrote in message news:%23G2XEiZ1HHA.4428@.TK2MSFTNGP03.
phx.gbl...
> "Juan T. Llibre" <nomailreplies@.nowhere.com> wrote in message news:OYTlMAX
1HHA.4496@.TK2MSFTNGP02.phx.gbl...
>
> What if it's https...?
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net
"Juan T. Llibre" <nomailreplies@.nowhere.com> wrote in message
news:OZX4ebc1HHA.4428@.TK2MSFTNGP03.phx.gbl...

>I don't have a server certificate handy to test this, but this should cover
>that :
I normally use something like this:
string strWebRoot = (Request.ServerVariables["HTTPS"] == "off" ? "http://" :
"https://") + Request.ServerVariables["SERVER_NAME"];
Mark Rae
ASP.NET MVP
http://www.markrae.net

what is needed on the webserver

I have a web site built with asp.net and I have been told that the only
files I need on the webserver are the files in the bin folder and aspx
files, I don't need the .vb or the .resx files on the webserver. Or do I
need them on the webserver?

And whatis a .resx file and what does it do?

--
J. D.thanks.

"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...
> That's right! All you need is to deploy the .dll files which reside in the
> bin directory, and the .aspx files. The code form the .vb or .cs files is
> compiled in the .dlls
> Regards,
> Kostadin Kostov
> "JD" wrote:
>> I have a web site built with asp.net and I have been told that the only
>> files I need on the webserver are the files in the bin folder and aspx
>> files, I don't need the .vb or the .resx files on the webserver. Or do I
>> need them on the webserver?
>>
>> And whatis a .resx file and what does it do?
>>
>> --
>> J. D.
>>
>>
>
Hmmm...

Maybe a few more files than those are needed.

The *.resx files certainly would be needed if there's any compiled
localization resources which are expected to work on the web server.

Also, *.ascx files are needed if any custom controls are used.

And, how about *.asmx files ? They should be uploaded, too.
And, surely, any *.ashx and *.soap files should be uploaded, too.

And, don't forget global.asax, web.config and any images you use.

:-)

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

"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...
> That's right! All you need is to deploy the .dll files which reside in the
> bin directory, and the .aspx files. The code form the .vb or .cs files is
> compiled in the .dlls
> Regards,
> Kostadin Kostov
> "JD" wrote:
>> I have a web site built with asp.net and I have been told that the only
>> files I need on the webserver are the files in the bin folder and aspx
>> files, I don't need the .vb or the .resx files on the webserver. Or do I
>> need them on the webserver?
>>
>> And whatis a .resx file and what does it do?
>>
>> --
>> J. D.
>>
>>
>
"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...

> All you need is to deploy the .dll files which reside in the bin
> directory,
> and the .aspx files.

Plus all the other required files, of course... :-)

*.ascx
*.asmx
Global.asax
Web.config

Plus all the other "support" files e.g. images, JavaScript includes,
cascading style sheets etc etc

what is needed on the webserver

I have a web site built with asp.net and I have been told that the only
files I need on the webserver are the files in the bin folder and aspx
files, I don't need the .vb or the .resx files on the webserver. Or do I
need them on the webserver?
And whatis a .resx file and what does it do?
J. D.That's right! All you need is to deploy the .dll files which reside in the
bin directory, and the .aspx files. The code form the .vb or .cs files is
compiled in the .dlls
Regards,
Kostadin Kostov
"JD" wrote:

> I have a web site built with asp.net and I have been told that the only
> files I need on the webserver are the files in the bin folder and aspx
> files, I don't need the .vb or the .resx files on the webserver. Or do I
> need them on the webserver?
> And whatis a .resx file and what does it do?
> --
> J. D.
>
>
thanks.
"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...
> That's right! All you need is to deploy the .dll files which reside in the
> bin directory, and the .aspx files. The code form the .vb or .cs files is
> compiled in the .dlls
> Regards,
> Kostadin Kostov
> "JD" wrote:
>
Hmmm...
Maybe a few more files than those are needed.
The *.resx files certainly would be needed if there's any compiled
localization resources which are expected to work on the web server.
Also, *.ascx files are needed if any custom controls are used.
And, how about *.asmx files ? They should be uploaded, too.
And, surely, any *.ashx and *.soap files should be uploaded, too.
And, don't forget global.asax, web.config and any images you use.
:-)
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================
"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...
> That's right! All you need is to deploy the .dll files which reside in the
> bin directory, and the .aspx files. The code form the .vb or .cs files is
> compiled in the .dlls
> Regards,
> Kostadin Kostov
> "JD" wrote:
>
"Kostadin Kostov" <KostadinKostov@.discussions.microsoft.com> wrote in
message news:34E007CB-F827-4026-91C2-36979608E0FC@.microsoft.com...

> All you need is to deploy the .dll files which reside in the bin
> directory,
> and the .aspx files.
Plus all the other required files, of course... :-)
*.ascx
*.asmx
Global.asax
Web.config
Plus all the other "support" files e.g. images, JavaScript includes,
cascading style sheets etc etc

what is needed for me to run this forum?

it is stated that microsoft server 2003 is needed but i only have windows XP sp2...is it enough?? do i need IIS as well??well, are you trying to host it yourself? are you just trying to start one and host it on someone elses computer? whether you are doing either, you are going to need IIS- which comes with XP pro- xp home does not have it and cant get it- you would need pro-