473,403 Members | 2,222 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,403 software developers and data experts.

Web Site Style

Hi,
I am a web newbie writing my first intranet web site using Webforms. I
remember when playing with Interdev it was possible to get a canned
style for your site, 'raygun' comes to mind.

Is there a similar thing for ASP.net?

The main thing I am after is stylish consistent hyperlinks (navigation
bars?) between the pages.
I intend to use an external CSS to provide the background, table look
and feel etc.

Thanks
Bob

Nov 18 '05 #1
5 1529
You can use CSS for all of your global layout if you wish.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"bclegg" <bc****@adriley.co.nz> wrote in message
news:#u**************@TK2MSFTNGP12.phx.gbl...
Hi,
I am a web newbie writing my first intranet web site using Webforms. I
remember when playing with Interdev it was possible to get a canned
style for your site, 'raygun' comes to mind.

Is there a similar thing for ASP.net?

The main thing I am after is stylish consistent hyperlinks (navigation
bars?) between the pages.
I intend to use an external CSS to provide the background, table look
and feel etc.

Thanks
Bob

Nov 18 '05 #2
Hi Kevin,
Thanks for your reply.
My problem is that I am a vb.net programmer with virtually no web design
experience who has to put together a web site that looks at least
halfway professional.
The site will essentially update and display info from an SQL database
via a webservice.

I have managed to get the database editing functionality that I want by
using a vb.net webform that accesses the webservice.

I guess I am looking for guidelines as to what tools to use to easily
design up the look and feel of the web forms.

eg After my original posting I noticed that Frontpage seems powerful in
that it has themes and you can generate navigation bars based on those
themes. (If I can get it working but that's another story.)

But is it acceptable to do the form layout in frontpage and then code up
tables etc in code behind forms in vb.net or vice versa.

There seems to be a suprising lack of .net documentation on how to
design the layout of a web form. ie. Tell a newbie how to put in a
navigation bar and set themes or whatever.

Any general guidelines or info on books would be appreciated.
thanks
Bob
Kevin Spencer wrote:
You can use CSS for all of your global layout if you wish.


Nov 18 '05 #3
Designing a webform is just like building a straight html page. You just
ecapsulate you menu in a user control or however you are doing it. Also look
at Dreamweaver MX 2004 for a design tool.
"bclegg" <bc****@adriley.co.nz> wrote in message
news:eA**************@TK2MSFTNGP11.phx.gbl...
Hi Kevin,
Thanks for your reply.
My problem is that I am a vb.net programmer with virtually no web design
experience who has to put together a web site that looks at least
halfway professional.
The site will essentially update and display info from an SQL database
via a webservice.

I have managed to get the database editing functionality that I want by
using a vb.net webform that accesses the webservice.

I guess I am looking for guidelines as to what tools to use to easily
design up the look and feel of the web forms.

eg After my original posting I noticed that Frontpage seems powerful in
that it has themes and you can generate navigation bars based on those
themes. (If I can get it working but that's another story.)

But is it acceptable to do the form layout in frontpage and then code up
tables etc in code behind forms in vb.net or vice versa.

There seems to be a suprising lack of .net documentation on how to
design the layout of a web form. ie. Tell a newbie how to put in a
navigation bar and set themes or whatever.

Any general guidelines or info on books would be appreciated.
thanks
Bob
Kevin Spencer wrote:
You can use CSS for all of your global layout if you wish.

Nov 18 '05 #4
Hi Bob,
Thank you for using MSDN Newsgroup! My name is Steven, and I'll be
assisting you on this issue.
From your description, you're looking for some guide on designing web page
layout and the user interface using VS.NET?
If there is anything I misunderstood, please feel free to let me know.

As for this problem, here is some of my suggestions:
Generally, the web page UI design is ought to be separated with the web
application's code logic. So as to the techniques or skills on how to
generate good looking web pages are common features not only concerned with
VS.NET but also many other web page design tools are capable of providing
such functionalites. For exmaple, the Frontpage as you mentioned, and also
the "DreamWeaver", Adobe's Golive .... All of these tools provides
different kinds of good features on web page's UI design. And the VS.NET
IDE tool is mainly a web application development tool which provide the
strong ability of design high performance web applciation with complex code
logic. Also, it also provide the UI designing functions and I always think
VS.NET is a very good page design tool since you can generate a simple page
and edit the html elements in it conveniently by its IDE's intelligent
sense. And it provides strong support for the clientside script such as
"javascript" 's edit support.
In addition, as for some particular design features such as generating a
navigation bar or menus. In ASP.NET we can encapsulate such web elements
into web controls, such as web server controls or web UserControl. For
detailed infos on ASP.NET web server controls or UserControls , you may
view the following web links in MSDN:

#Web Forms User Controls
http://msdn.microsoft.com/library/en...ormsusercontro
ls.asp?frame=true

#Learn how to create Web user controls that handle login checking for your
..NET Web pages.
http://msdn.microsoft.com/library/en...asp?frame=true

#Web Server Controls
http://msdn.microsoft.com/library/en...syntaxforwebco
ntrols.asp?frame=true

Also, there're also many third-party ASP.NET webcontrols , which may
provide some nice features you like. And I think www.asp.net is a good site
for learning many tech skills on developing ASP.NET web application. Here
is the navigation controls in its control gallery, you may found many good
navigation controls such as menu or toolbar ,treeviews there:

# Control Gallery > Navigation Controls
http://www.asp.net/ControlGallery/de...=12&tabindex=2
Further more, as for the common web page designing, I've also searched some
good web references which maybe helpful to you:

#Web page design references

http://www.wpdfd.com/

http://www.makoa.org/web-design.htm

#Web page design generic resource
http://www.pageresource.com/
Please check out the preceding suggestions. If you need any further
assistance, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #5
Hi Steven,
Thanks for your reply and the links.
I shall follow up.
My thanks also to all the others who replied.
regards
Bob
Steven Cheng[MSFT] wrote:
Hi Bob,
Thank you for using MSDN Newsgroup! My name is Steven, and I'll be
assisting you on this issue.
From your description, you're looking for some guide on designing web page
layout and the user interface using VS.NET?
If there is anything I misunderstood, please feel free to let me know.

As for this problem, here is some of my suggestions:
Generally, the web page UI design is ought to be separated with the web
application's code logic. So as to the techniques or skills on how to
generate good looking web pages are common features not only concerned with
VS.NET but also many other web page design tools are capable of providing
such functionalites. For exmaple, the Frontpage as you mentioned, and also
the "DreamWeaver", Adobe's Golive .... All of these tools provides
different kinds of good features on web page's UI design. And the VS.NET
IDE tool is mainly a web application development tool which provide the
strong ability of design high performance web applciation with complex code
logic. Also, it also provide the UI designing functions and I always think
VS.NET is a very good page design tool since you can generate a simple page
and edit the html elements in it conveniently by its IDE's intelligent
sense. And it provides strong support for the clientside script such as
"javascript" 's edit support.
In addition, as for some particular design features such as generating a
navigation bar or menus. In ASP.NET we can encapsulate such web elements
into web controls, such as web server controls or web UserControl. For
detailed infos on ASP.NET web server controls or UserControls , you may
view the following web links in MSDN:

#Web Forms User Controls
http://msdn.microsoft.com/library/en...ormsusercontro
ls.asp?frame=true

#Learn how to create Web user controls that handle login checking for your
NET Web pages.
http://msdn.microsoft.com/library/en...asp?frame=true

#Web Server Controls
http://msdn.microsoft.com/library/en...syntaxforwebco
ntrols.asp?frame=true

Also, there're also many third-party ASP.NET webcontrols , which may
provide some nice features you like. And I think www.asp.net is a good site
for learning many tech skills on developing ASP.NET web application. Here
is the navigation controls in its control gallery, you may found many good
navigation controls such as menu or toolbar ,treeviews there:

# Control Gallery > Navigation Controls
http://www.asp.net/ControlGallery/de...=12&tabindex=2
Further more, as for the common web page designing, I've also searched some
good web references which maybe helpful to you:

#Web page design references

http://www.wpdfd.com/

http://www.makoa.org/web-design.htm

#Web page design generic resource
http://www.pageresource.com/
Please check out the preceding suggestions. If you need any further
assistance, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


Nov 18 '05 #6

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

Similar topics

0
by: SteveJ | last post by:
All, Can someone help me solve the next step. First of all let me say I'm new to php. I pieced the following code together from samples I found on the net and a book I bought called PHP...
64
by: Dave | last post by:
A friend of mine pointed out the other day that certain elements on my web site are too small. But in most of what I publish, fonts are at default size or smaller, and my images are easy to see. I...
3
by: vivek9856 | last post by:
I am making a website and I need help promptly. Here is the code first off -----File Header.htm----- <HTML> <HEAD> <TITLE>Black Hawk Down</TITLE> </HEAD> <LINK REL=stylesheet...
1
by: jdurden | last post by:
am currently woking on building this site: www.maverick-spirit.com. everything seems to be fine except the press releases page. When you click on one of the press releases in the left column under...
27
by: rsteph | last post by:
I've got a site that appears properly in both IE and Netscape for has all sorts of appearance issues in Mozilla Firefox. I've looked around for some points on the web that help explain the issue, but...
1
by: want2learn | last post by:
Hi when i run my calendar.aspx site im just getting a blank site. Why do it not show the calendar !? Calendar.aspx <%@ Page Language="VB" AutoEventWireup="True" %> <%@ Import...
2
by: Kevin Audleman | last post by:
Yesterday my site unexpectedly stopped loading. I tracked it down to the CSS file for the site. When I commented it out, the site was okay. When I put it back in, it was not. I tried connecting to...
1
by: mark4asp | last post by:
I moved a page to another web-site and now it's broke! I had 5 pages in their own web-site. These pages have now been moved to another web-site. Everything is fine except that one of the pages,...
1
by: sharkyboy | last post by:
Hi, I am slightly confused. On our website www.the-ark.net there is a an advert strip down the right hand side. When viewed with IE or FF with windows XP the ad strip is visible. However the ad...
2
by: tridirk | last post by:
Hi; I am getting a Objceted Expected Error on my forum site. I can't find what is wrong? Line: Char: Error: Object expected Code:0 the site is My SMF Forum
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.