473,385 Members | 1,356 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,385 software developers and data experts.

Uniformity

Now I know that VS2005 has master pages and web parts etc etc. However, at
present I am forced to work with VS2003 so I have a couple of basic
questions related to the subject matter for which I am hoping to achieve
inspirational and or direction.

Having learnt a reasonable amount of the basic's on ASP.NET, I know want to
try and design and build a fully working commercial site I want to create my
new site with a degree of visual consistency.
Unfortunately I am not using VS2005 so I need to know what my options are
for producing some sort of template is.

I need to define the areas on my page which will contain the menu custom
controls and any corporate graphics etc so I can simply create a page from a
template.

Does anyone have any pearls of wisdom for me before I go ahead and get
myself in a whole heap of trouble?

--
Best Regards

The Inimitable Mr Newbie º¿º

--
Best Regards

The Inimitable Mr Newbie º¿º
Nov 19 '05 #1
5 1275
The key to uniformity is Styles/StyleSheets/Css
Ensure that you use the same styles across the board and you should be
pretty well on your way. Beyond that, what I've always done is simply create
a page and use that as my template. Whenever I need to create a new page I
copy that one, rename it and do what I need.
Using controls for things like headers, menus, footers, etc will also go a
LONG way to ensure uniformity.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Mr Newbie" wrote:
Now I know that VS2005 has master pages and web parts etc etc. However, at
present I am forced to work with VS2003 so I have a couple of basic
questions related to the subject matter for which I am hoping to achieve
inspirational and or direction.

Having learnt a reasonable amount of the basic's on ASP.NET, I know want to
try and design and build a fully working commercial site I want to create my
new site with a degree of visual consistency.
Unfortunately I am not using VS2005 so I need to know what my options are
for producing some sort of template is.

I need to define the areas on my page which will contain the menu custom
controls and any corporate graphics etc so I can simply create a page from a
template.

Does anyone have any pearls of wisdom for me before I go ahead and get
myself in a whole heap of trouble?

--
Best Regards

The Inimitable Mr Newbie º¿º

--
Best Regards

The Inimitable Mr Newbie º¿º

Nov 19 '05 #2
Style Sheets are something I am very familiar with. My question was more
based on the ease in which I could create new pages based on a template.
Dont forget you have to create the code behind and resources as well for
each one, as well as modifying any code references etc.

Ideally, I would like to create a 'Template' which I could select from the
Add new item.

Hope that makes sense.!

--
Best Regards

The Inimitable Mr Newbie º¿º
"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:9E**********************************@microsof t.com...
The key to uniformity is Styles/StyleSheets/Css
Ensure that you use the same styles across the board and you should be
pretty well on your way. Beyond that, what I've always done is simply
create
a page and use that as my template. Whenever I need to create a new page I
copy that one, rename it and do what I need.
Using controls for things like headers, menus, footers, etc will also go a
LONG way to ensure uniformity.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Mr Newbie" wrote:
Now I know that VS2005 has master pages and web parts etc etc. However,
at
present I am forced to work with VS2003 so I have a couple of basic
questions related to the subject matter for which I am hoping to achieve
inspirational and or direction.

Having learnt a reasonable amount of the basic's on ASP.NET, I know want
to
try and design and build a fully working commercial site I want to create
my
new site with a degree of visual consistency.
Unfortunately I am not using VS2005 so I need to know what my options are
for producing some sort of template is.

I need to define the areas on my page which will contain the menu custom
controls and any corporate graphics etc so I can simply create a page
from a
template.

Does anyone have any pearls of wisdom for me before I go ahead and get
myself in a whole heap of trouble?

--
Best Regards

The Inimitable Mr Newbie º¿º

--
Best Regards

The Inimitable Mr Newbie º¿º

Nov 19 '05 #3
Yes, you can add templates to visual studio.

If you install to the default directory, you can go to: C:\Program
Files\Microsoft Visual Studio .NET 2003\Vb7

And look at the types of templates you can add for VB projects. You can do
similar things for other languages by going to their directory.

But you will see here template folders for projects, items, etc. If you go
in, you will see the different types that you see in VS.NET defined. You can
then create your own, and all you have to do is put your item types in the
right spot, and next time you open visual studio it will make them
available.

"Mr Newbie" <he**@now.com> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Style Sheets are something I am very familiar with. My question was more
based on the ease in which I could create new pages based on a template.
Dont forget you have to create the code behind and resources as well for
each one, as well as modifying any code references etc.

Ideally, I would like to create a 'Template' which I could select from the
Add new item.

Hope that makes sense.!

--
Best Regards

The Inimitable Mr Newbie º¿º
"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:9E**********************************@microsof t.com...
The key to uniformity is Styles/StyleSheets/Css
Ensure that you use the same styles across the board and you should be
pretty well on your way. Beyond that, what I've always done is simply
create
a page and use that as my template. Whenever I need to create a new page
I
copy that one, rename it and do what I need.
Using controls for things like headers, menus, footers, etc will also go
a
LONG way to ensure uniformity.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Mr Newbie" wrote:
Now I know that VS2005 has master pages and web parts etc etc. However,
at
present I am forced to work with VS2003 so I have a couple of basic
questions related to the subject matter for which I am hoping to achieve
inspirational and or direction.

Having learnt a reasonable amount of the basic's on ASP.NET, I know want
to
try and design and build a fully working commercial site I want to
create my
new site with a degree of visual consistency.
Unfortunately I am not using VS2005 so I need to know what my options
are
for producing some sort of template is.

I need to define the areas on my page which will contain the menu custom
controls and any corporate graphics etc so I can simply create a page
from a
template.

Does anyone have any pearls of wisdom for me before I go ahead and get
myself in a whole heap of trouble?

--
Best Regards

The Inimitable Mr Newbie º¿º

--
Best Regards

The Inimitable Mr Newbie º¿º


Nov 19 '05 #4
Thanks for your help.

In the meantime I have found a resource which describes the process in some
detail I have not tried it yey but is seems a little more involved than your
reply suggests.

http://www.codeproject.com/dotnet/vs...omtemplate.asp

Nontheless, I will give it a go tomorrow and maybe I'll be in business.

--
Best Regards

The Inimitable Mr Newbie º¿º

"Marina" <so*****@nospam.com> wrote in message
news:u2**************@TK2MSFTNGP09.phx.gbl...
Yes, you can add templates to visual studio.

If you install to the default directory, you can go to: C:\Program
Files\Microsoft Visual Studio .NET 2003\Vb7

And look at the types of templates you can add for VB projects. You can do
similar things for other languages by going to their directory.

But you will see here template folders for projects, items, etc. If you
go in, you will see the different types that you see in VS.NET defined.
You can then create your own, and all you have to do is put your item
types in the right spot, and next time you open visual studio it will make
them available.

"Mr Newbie" <he**@now.com> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Style Sheets are something I am very familiar with. My question was more
based on the ease in which I could create new pages based on a template.
Dont forget you have to create the code behind and resources as well for
each one, as well as modifying any code references etc.

Ideally, I would like to create a 'Template' which I could select from
the Add new item.

Hope that makes sense.!

--
Best Regards

The Inimitable Mr Newbie º¿º
"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:9E**********************************@microsof t.com...
The key to uniformity is Styles/StyleSheets/Css
Ensure that you use the same styles across the board and you should be
pretty well on your way. Beyond that, what I've always done is simply
create
a page and use that as my template. Whenever I need to create a new page
I
copy that one, rename it and do what I need.
Using controls for things like headers, menus, footers, etc will also go
a
LONG way to ensure uniformity.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Mr Newbie" wrote:

Now I know that VS2005 has master pages and web parts etc etc. However,
at
present I am forced to work with VS2003 so I have a couple of basic
questions related to the subject matter for which I am hoping to
achieve
inspirational and or direction.

Having learnt a reasonable amount of the basic's on ASP.NET, I know
want to
try and design and build a fully working commercial site I want to
create my
new site with a degree of visual consistency.
Unfortunately I am not using VS2005 so I need to know what my options
are
for producing some sort of template is.

I need to define the areas on my page which will contain the menu
custom
controls and any corporate graphics etc so I can simply create a page
from a
template.

Does anyone have any pearls of wisdom for me before I go ahead and get
myself in a whole heap of trouble?

--
Best Regards

The Inimitable Mr Newbie º¿º

--
Best Regards

The Inimitable Mr Newbie º¿º



Nov 19 '05 #5
I followed this and it seems to work fine.

--
Best Regards

The Inimitable Mr Newbie º¿º
"Mr Newbie" <he**@now.com> wrote in message
news:ey**************@TK2MSFTNGP12.phx.gbl...
Thanks for your help.

In the meantime I have found a resource which describes the process in
some detail I have not tried it yey but is seems a little more involved
than your reply suggests.

http://www.codeproject.com/dotnet/vs...omtemplate.asp

Nontheless, I will give it a go tomorrow and maybe I'll be in business.

--
Best Regards

The Inimitable Mr Newbie º¿º

"Marina" <so*****@nospam.com> wrote in message
news:u2**************@TK2MSFTNGP09.phx.gbl...
Yes, you can add templates to visual studio.

If you install to the default directory, you can go to: C:\Program
Files\Microsoft Visual Studio .NET 2003\Vb7

And look at the types of templates you can add for VB projects. You can
do similar things for other languages by going to their directory.

But you will see here template folders for projects, items, etc. If you
go in, you will see the different types that you see in VS.NET defined.
You can then create your own, and all you have to do is put your item
types in the right spot, and next time you open visual studio it will
make them available.

"Mr Newbie" <he**@now.com> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Style Sheets are something I am very familiar with. My question was more
based on the ease in which I could create new pages based on a template.
Dont forget you have to create the code behind and resources as well for
each one, as well as modifying any code references etc.

Ideally, I would like to create a 'Template' which I could select from
the Add new item.

Hope that makes sense.!

--
Best Regards

The Inimitable Mr Newbie º¿º
"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:9E**********************************@microsof t.com...
The key to uniformity is Styles/StyleSheets/Css
Ensure that you use the same styles across the board and you should be
pretty well on your way. Beyond that, what I've always done is simply
create
a page and use that as my template. Whenever I need to create a new
page I
copy that one, rename it and do what I need.
Using controls for things like headers, menus, footers, etc will also
go a
LONG way to ensure uniformity.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Mr Newbie" wrote:

> Now I know that VS2005 has master pages and web parts etc etc.
> However, at
> present I am forced to work with VS2003 so I have a couple of basic
> questions related to the subject matter for which I am hoping to
> achieve
> inspirational and or direction.
>
> Having learnt a reasonable amount of the basic's on ASP.NET, I know
> want to
> try and design and build a fully working commercial site I want to
> create my
> new site with a degree of visual consistency.
>
>
> Unfortunately I am not using VS2005 so I need to know what my options
> are
> for producing some sort of template is.
>
> I need to define the areas on my page which will contain the menu
> custom
> controls and any corporate graphics etc so I can simply create a page
> from a
> template.
>
> Does anyone have any pearls of wisdom for me before I go ahead and get
> myself in a whole heap of trouble?
>
>
>
> --
> Best Regards
>
> The Inimitable Mr Newbie º¿º
>
> --
> Best Regards
>
> The Inimitable Mr Newbie º¿º
>
>
>



Nov 19 '05 #6

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

Similar topics

220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
303
by: mike420 | last post by:
In the context of LATEX, some Pythonista asked what the big successes of Lisp were. I think there were at least three *big* successes. a. orbitz.com web site uses Lisp for algorithms, etc. b....
47
by: Martin DeMello | last post by:
It seems to be a fairly common pattern for an object-modifying method to return None - however, this is often quite inconvenient. For instance def f(lst1, lst2): g((lst1 + lst2).reverse()) #...
10
by: Steven T. Hatton | last post by:
I've mentioned a few times that the lack of standard filenames in C++ can be problematic. This is an example of the kind of situation where it becomes so. I tend to switch between using Emacs and...
28
by: liorm | last post by:
Hi everyone, I need to write a web app, that will support millions of user accounts, template-based user pages and files upload. The client is going to be written in Flash. I wondered if I coudl...
2
by: cygsoft | last post by:
Hi I have designed some Web Pages using Dreamweaver. The screens are looking fine when previewed with IE 6 browser. But when I view those in Netscape, the screens are totally collapsed. So can...
158
by: jacob navia | last post by:
1: It is not possible to check EVERY malloc result within complex software. 2: The reasonable solution (use a garbage collector) is not possible for whatever reasons. 3: A solution like the...
14
by: Phil Stanton | last post by:
I have 1 FE database which can be linked to a number of BE databases. The BEs are all different Clubs e.g. Sailing Club, Yacht Club, Bridge Club, Family etc. Problem is if I change anything in...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.