473,396 Members | 2,111 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

okay silly question on .aspx forms

I have been using .Net for over a year now mostly with Windows forms with no
problems.

I have just started to build a small web application with one .aspx page.
It all works fine on my localhost etc...

I now want to push it to my live Internet site. However I don't know what
files to ftp across and where to place them (the site ISP says in a folder
called /xyz).

So I need to ask, what do I do with my .dll .aspx etc.... files in terms of
ftp'ing them to the live Internet site and invoke the .aspx page ???
(NB the web site supports .net v1.1)

Thanks
Gerry
Nov 21 '05 #1
7 1078
Gerry,

First you have to know if your ISP supports ASPNET and with that IIS. I am
afraid you will be disapointed and have to search for a new ISP. In this
newsgroup you can search for that because it is often asked.

I hope this helps anyway somehow?

Cor

"dotnetnewbie" <do**********@discussions.microsoft.com>
I have been using .Net for over a year now mostly with Windows forms with
no
problems.

I have just started to build a small web application with one .aspx page.
It all works fine on my localhost etc...

I now want to push it to my live Internet site. However I don't know what
files to ftp across and where to place them (the site ISP says in a folder
called /xyz).

So I need to ask, what do I do with my .dll .aspx etc.... files in terms
of
ftp'ing them to the live Internet site and invoke the .aspx page ???
(NB the web site supports .net v1.1)

Thanks
Gerry

Nov 21 '05 #2
in .NET 1.1 all you need is the ASPX and DLL files that are in the BIN
folder for your site to work (excluding any external files to .NET you may
of included in your project such as JPEG, XSLT and XML files)
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
I have been using .Net for over a year now mostly with Windows forms with
no
problems.

I have just started to build a small web application with one .aspx page.
It all works fine on my localhost etc...

I now want to push it to my live Internet site. However I don't know what
files to ftp across and where to place them (the site ISP says in a folder
called /xyz).

So I need to ask, what do I do with my .dll .aspx etc.... files in terms
of
ftp'ing them to the live Internet site and invoke the .aspx page ???
(NB the web site supports .net v1.1)

Thanks
Gerry

Nov 21 '05 #3
"dotnetnewbie" <do**********@discussions.microsoft.com> schrieb:
So I need to ask, what do I do with my .dll .aspx etc....
files in terms of ftp'ing them to the live Internet site and
invoke the .aspx page ???
(NB the web site supports .net v1.1)


You can check if ASP.NET works by simply uploading one of your ".aspx" files
like a normal HTML document and then trying to show this file in your web
browser.

For installing DLLs (HTTP modules, ...) you need access to certain
directories ("bin" directory, for example). Many ISPs do not give direct
access to these directories, but you may contact the support for installing
the DLLs and setting the permissions.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #4
I've placed them in the Bin but how do I get the appropriate aspx page to
show by default (is there a config file I need to change ) ?

Thanks
Gerry

"Brian Henry" wrote:
in .NET 1.1 all you need is the ASPX and DLL files that are in the BIN
folder for your site to work (excluding any external files to .NET you may
of included in your project such as JPEG, XSLT and XML files)
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
I have been using .Net for over a year now mostly with Windows forms with
no
problems.

I have just started to build a small web application with one .aspx page.
It all works fine on my localhost etc...

I now want to push it to my live Internet site. However I don't know what
files to ftp across and where to place them (the site ISP says in a folder
called /xyz).

So I need to ask, what do I do with my .dll .aspx etc.... files in terms
of
ftp'ing them to the live Internet site and invoke the .aspx page ???
(NB the web site supports .net v1.1)

Thanks
Gerry


Nov 21 '05 #5
I've placed them in the Bin but how do I get the appropriate aspx page to
show by default (is there a config file I need to change ) ?

Thanks
Gerry

"Brian Henry" wrote:
in .NET 1.1 all you need is the ASPX and DLL files that are in the BIN
folder for your site to work (excluding any external files to .NET you may
of included in your project such as JPEG, XSLT and XML files)
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
I have been using .Net for over a year now mostly with Windows forms with
no
problems.

I have just started to build a small web application with one .aspx page.
It all works fine on my localhost etc...

I now want to push it to my live Internet site. However I don't know what
files to ftp across and where to place them (the site ISP says in a folder
called /xyz).

So I need to ask, what do I do with my .dll .aspx etc.... files in terms
of
ftp'ing them to the live Internet site and invoke the .aspx page ???
(NB the web site supports .net v1.1)

Thanks
Gerry


Nov 21 '05 #6
to show default.aspx as the main page? you need to change that in IIS on the
server and set the order for pages to be the default page.
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:5A**********************************@microsof t.com...
I've placed them in the Bin but how do I get the appropriate aspx page to
show by default (is there a config file I need to change ) ?

Thanks
Gerry

"Brian Henry" wrote:
in .NET 1.1 all you need is the ASPX and DLL files that are in the BIN
folder for your site to work (excluding any external files to .NET you
may
of included in your project such as JPEG, XSLT and XML files)
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
>I have been using .Net for over a year now mostly with Windows forms
>with
>no
> problems.
>
> I have just started to build a small web application with one .aspx
> page.
> It all works fine on my localhost etc...
>
> I now want to push it to my live Internet site. However I don't know
> what
> files to ftp across and where to place them (the site ISP says in a
> folder
> called /xyz).
>
> So I need to ask, what do I do with my .dll .aspx etc.... files in
> terms
> of
> ftp'ing them to the live Internet site and invoke the .aspx page ???
> (NB the web site supports .net v1.1)
>
> Thanks
> Gerry


Nov 21 '05 #7
to show default.aspx as the main page? you need to change that in IIS on the
server and set the order for pages to be the default page.
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:5A**********************************@microsof t.com...
I've placed them in the Bin but how do I get the appropriate aspx page to
show by default (is there a config file I need to change ) ?

Thanks
Gerry

"Brian Henry" wrote:
in .NET 1.1 all you need is the ASPX and DLL files that are in the BIN
folder for your site to work (excluding any external files to .NET you
may
of included in your project such as JPEG, XSLT and XML files)
"dotnetnewbie" <do**********@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
>I have been using .Net for over a year now mostly with Windows forms
>with
>no
> problems.
>
> I have just started to build a small web application with one .aspx
> page.
> It all works fine on my localhost etc...
>
> I now want to push it to my live Internet site. However I don't know
> what
> files to ftp across and where to place them (the site ISP says in a
> folder
> called /xyz).
>
> So I need to ask, what do I do with my .dll .aspx etc.... files in
> terms
> of
> ftp'ing them to the live Internet site and invoke the .aspx page ???
> (NB the web site supports .net v1.1)
>
> Thanks
> Gerry


Nov 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Qin Zhou | last post by:
I felt silly to ask this question, but since I don't know the answer.... So here it goes. Is there a server control for the html <map> tag? Thanks Qin Zhou
6
by: Patrick Coghlan | last post by:
I want to create about 4 forms with the same dimensions and background colours, similar to the forms one has to traverse when installing various software packages. I'm using Visual Studio and...
5
by: Jeff | last post by:
Greetings I am beginning a web app. I am using C# aspx forms for my web pages. Is it possible to create/use one aspx file as a base from which to derive other aspx files? I can not get this to...
3
by: Stevie_mac | last post by:
It might be me but... I dont seem to get a Page_Load event when a opening an ASPX in an iFrame. I do geta Page_Load event when an item on the ASPX (inside the iFrame) is clicked but then...
2
by: Murphy | last post by:
Our website contains subdirectories for each subsidiary company, each company has it's own look and feel to the pages in their subdirectory although they are all part of the main website. The...
1
by: www.MSmobiles.com | last post by:
Hi! I am using something like this in web.config : <authentication mode="Forms"> <forms name=".MSMOBILES_COM___COOKIE" loginUrl="login.aspx" protection="All" timeout="30" path="/">
7
by: ampeloso | last post by:
Hello, I'm trying to understand how a aspx form gets submitted to the server when there is no action attribute. I am under the impression you would need some kind of html valid button attribute in...
7
by: Matt | last post by:
I've asked this question to some developers that are much more experienced than I, and gotten different answers --- and I can't find anything about it in the documentation. Dim vs. Private as a...
1
by: djnokturnal | last post by:
Hey guys/gals, I have successfully implemented forms authentication on my site: <authentication mode="Forms"> <forms loginUrl="/Members/Login.aspx" timeout="20"...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.