473,785 Members | 2,411 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Do u think this makes sense??

Hi all,

i've been investigating for quite a while for files that are mandatory
to be deployed to the server for an asp.net v1.1 application to run, to
make it more clear, we don't need to move the source code files, .vb
and .cs we have their assemblies deployed on the server.
i also wanted to find out if we can change default locations for some
files that are by default store on the application main folder.
i got the following results and want to make sure if it makes sense :D

application files mandatory
can change its default location
(if its in the application it
must be
located on the server in the
application
main or sub folder)

source code files no
------------------
(. cs and .vb)

web pages
(.asp, .aspx, .html, .htm) yes
no

global.asax no
no

global.asax.cs no
no

web.config yes
no

user control pages no
(.ascx)

webserveices no
no
(.asmx)

resources no
yes
(.res,.resx)

extra files yes
yes
(.txt, .jpg,.jpg,....)

web handlers no
yes
(.ashx)

assemblies no
yes
(.dlls)
NO OTHER FILES CAN BE FOUND ON THE SERVER

i'm using IIS 6, visual studio 2003 and asp.net v1.1, these are a must,
i.e. i can't use vs2005 or asp.net v2 :)

i'm talking about big and complicated applications.
thanx for ur quick advice :)

Dec 12 '06 #1
3 1159
Hi all,

i've been investigating for quite a while for files that are mandatory
to be deployed to the server for an asp.net v1.1 application to run, to
make it more clear, we don't need to move the source code files, .vb
and .cs we have their assemblies deployed on the server.
i also wanted to find out if we can change default locations for some
files that are by default store on the application main folder.
i got the following results and want to make sure if it makes sense :D
manadatory : (if its in the application it must be located on the
server in the application main or sub folder)

application files mandatory can change its default location

source code files no --
(. cs and .vb)

web pages yes no
(.asp, .aspx, .html, .htm)

global.asax no no

global.asax.cs no no

web.config yes no

user control pages no yes
(.ascx)

webserveices no no
(.asmx)

resources no yes
(.res,.resx)

extra files yes yes
(.txt, .jpg,.jpg,....)

web handlers no yes
(.ashx)

assemblies no yes
(.dlls)
NO OTHER FILES CAN BE FOUND ON THE SERVER

i'm using IIS 6, visual studio 2003 and asp.net v1.1, these are a must,
i.e. i can't use vs2005 or asp.net v2 :)

thanx for ur quick advice :)

Dec 12 '06 #2
You have two choices in 2.0.

1. Deploy everything
2. Publish the site and move the bits published to the server

If you do not want to publish source, use #2.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************** *************** **************
Think outside the box!
*************** *************** **************
<De************ @gmail.comwrote in message
news:11******** *************@1 6g2000cwy.googl egroups.com...
Hi all,

i've been investigating for quite a while for files that are mandatory
to be deployed to the server for an asp.net v1.1 application to run, to
make it more clear, we don't need to move the source code files, .vb
and .cs we have their assemblies deployed on the server.
i also wanted to find out if we can change default locations for some
files that are by default store on the application main folder.
i got the following results and want to make sure if it makes sense :D

application files mandatory
can change its default location
(if its in the application it
must be
located on the server in the
application
main or sub folder)

source code files no
------------------
(. cs and .vb)

web pages
(.asp, .aspx, .html, .htm) yes
no

global.asax no
no

global.asax.cs no
no

web.config yes
no

user control pages no
(.ascx)

webserveices no
no
(.asmx)

resources no
yes
(.res,.resx)

extra files yes
yes
(.txt, .jpg,.jpg,....)

web handlers no
yes
(.ashx)

assemblies no
yes
(.dlls)
NO OTHER FILES CAN BE FOUND ON THE SERVER

i'm using IIS 6, visual studio 2003 and asp.net v1.1, these are a must,
i.e. i can't use vs2005 or asp.net v2 :)

i'm talking about big and complicated applications.
thanx for ur quick advice :)
Dec 12 '06 #3
i don't have the option for using 2.0, i can only work on 1.x

what about other files

Cowboy (Gregory A. Beamer) wrote:
You have two choices in 2.0.

1. Deploy everything
2. Publish the site and move the bits published to the server

If you do not want to publish source, use #2.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************** *************** **************
Think outside the box!
*************** *************** **************
<De************ @gmail.comwrote in message
news:11******** *************@1 6g2000cwy.googl egroups.com...
Hi all,

i've been investigating for quite a while for files that are mandatory
to be deployed to the server for an asp.net v1.1 application to run, to
make it more clear, we don't need to move the source code files, .vb
and .cs we have their assemblies deployed on the server.
i also wanted to find out if we can change default locations for some
files that are by default store on the application main folder.
i got the following results and want to make sure if it makes sense :D

application files mandatory
can change its default location
(if its in the application it
must be
located on the server in the
application
main or sub folder)

source code files no
------------------
(. cs and .vb)

web pages
(.asp, .aspx, .html, .htm) yes
no

global.asax no
no

global.asax.cs no
no

web.config yes
no

user control pages no
(.ascx)

webserveices no
no
(.asmx)

resources no
yes
(.res,.resx)

extra files yes
yes
(.txt, .jpg,.jpg,....)

web handlers no
yes
(.ashx)

assemblies no
yes
(.dlls)
NO OTHER FILES CAN BE FOUND ON THE SERVER

i'm using IIS 6, visual studio 2003 and asp.net v1.1, these are a must,
i.e. i can't use vs2005 or asp.net v2 :)

i'm talking about big and complicated applications.
thanx for ur quick advice :)
Dec 12 '06 #4

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

Similar topics

72
4855
by: The Plankmeister | last post by:
Is doing this bad: <h3>Some title or other...<a href="#pagetop">back to top</a></h3> I have a feeling it is... My problem is I'm using CSS to style the H3 into a block that spans the whole containing element. I would like the <a> to appear next to the title, but I'm sure this is bad practice (for screen readers and heading-level navigation etc etc) So... is it acceptable to do this:
72
5898
by: E. Robert Tisdale | last post by:
What makes a good C/C++ programmer? Would you be surprised if I told you that it has almost nothing to do with your knowledge of C or C++? There isn't much difference in productivity, for example, between a C/C++ programmers with a few weeks of experience and a C/C++ programmer with years of experience. You don't really need to understand the subtle details or use the obscure features of either language
45
2729
by: Debashish Chakravarty | last post by:
K&R pg.66 describes two situations when using goto makes sense. Has anyone here come across situations where using goto provided the most elegant solution. -- http://www.kashmiri-pandit.org/atrocities/index.html
15
2099
by: Rhy Mednick | last post by:
I have a class (let's call it ClassA) that I've written which has events. In another class (let's call it ClassB) I create a collection of ClassA objects. In a third class (ClassC) I create a reference to some of the ClassA objects created in ClassB. In ClassC I hook into the ClassA events with a foreach loop so that I hook each object. The code is something like this: class ClassC { void SomeMethod() { foreach (ClassA item in...
7
1734
by: dudi | last post by:
Hi, very puzzling... I have one perfectly working solution, in which I use a a.dll which has a class A. that class loads data from the database and for each row deserialize the cell into class A1. works great. I made a new solution, I linked to the same a.dll, and In a new project in this new solution I call the same function in a.dll that will load the datatable and for each row deserialize the info into class A1. however, this time in...
8
2125
by: Allen | last post by:
Does anyone agree with me? If you have used Matlab, welcome to discuss it.
2
1601
by: Bjarne | last post by:
Dear all, although being a user of PHP and other scripting-languages for years, I have not taken part in any large projects based on PHP. Thus, I don't really know how real PHP-applications are deployed out there. This posting is a request for input from professional PHP-users and architects with experience from designing PHP applications. My company makes a toolkit for developing WebServices. This toolkit is typically used to expose an...
5
1288
by: yoni | last post by:
Hi, I am trying to write a regexp to find all the code on the header of entities in SQL Server (views, SPs, etc...) I got something like this: (.|\n)*((create view)|(create proc)|(create function)|(create trigger)) does that means sense? I want all the code that's before the code header. now, the problem is, when i give that pattern with some string buffer to the 'replace' method (I replace it with String.Empty...
30
1360
by: Bill Cunningham | last post by:
I began to think about some excercises I could with files after reading turtorials today on arithmetic operators and confusing myself and decided to do this. Take the mv command from linux that moves and renames files read it as binary and write it as text. After some compiler qipes it compiled and I believe it did want I wanted it to. #include <stdio.h> int main(void) {
0
9646
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10346
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10157
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8982
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5386
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5514
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4055
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3658
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2887
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.