Welcome to Sign in | Join | Help
in
Home Forums Photos Downloads

Have a look at this city Portal - developed with asp.net 2.0

Last post 11-19-2006, 3:02 AM by oooshola. 8 replies.
Sort Posts: Previous Next
  •  11-13-2006, 3:25 AM 324

    Have a look at this city Portal - developed with asp.net 2.0

    Hello,

    I welcome you all to have a look at this site mentioned below.

    Have a look here.

    I am open to comments and suggestions. I am keen to know what do the experts have to say about this portal based on asp.net 2.0 and sql2005.

    This site belongs to a metro city fom India.

    Thanks

    SoftMind,
  •  11-15-2006, 2:44 AM 344 in reply to 324

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Looks good. You may want to check how it looks in several different browsers (I'm not sure if it's just me, but there are some layout problems when I view the site in Firefox, and even sometimes in IE7).

    I like to dab in web design a little:
    www.flixgadget.com
    http://www.studentorg.vcu.edu/asuasu
  •  11-15-2006, 7:40 AM 345 in reply to 324

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Strangely enough, I'm directly involved with something -very- similiar!

    I second oooshla in the formatting question -- there seems to be a placement/scaling issue with a few things, nothing a little css can't fix.  Also as a suggestion -- you may not want to leave an email address on your contact page, it invites spam (if this has not happened yet, don't worry, it will).  Use a form instead that sends you the email and don't forget to validate their email address! :-)


    RileyTech.net
    Trainer video maker guy
    "Where did you find that?" code man

    Yes, I have and frequently wear a fedora :-P
  •  11-15-2006, 10:50 PM 349 in reply to 344

    Re: Have a look at this city Portal - developed with asp.net 2.0

    oooshola:
    Looks good. You may want to check how it looks in several different browsers (I'm not sure if it's just me, but there are some layout problems when I view the site in Firefox, and even sometimes in IE7).

    ------------------------------------------------------------------THANKS-----------------------------------------------
    Hi,

    I have totally failed to make it look good in Firefox 1.5 and 2.0 also.

    I do not know, why both this versions does not support my CSS.

    I installed IE7 expecting my site to look more good. But I failed there also.

    I need to find solutions for FireFox 2 and IE7 as soon as possible.

    Is anyone as depressed as me, when it comes to different brower solutions.

    SoftMind.

  •  11-16-2006, 12:14 AM 351 in reply to 349

    Re: Have a look at this city Portal - developed with asp.net 2.0

    First of all, you're very welcome. 

    >I have totally failed to make it look good in Firefox 1.5 and 2.0 also.

    I know how it feels sometimes, I really like firefox for browsing, but its CSS isn't always great. 

    >I do not know, why both this versions does not support my CSS.

    ME NEITHER. I wish there was a law that all browsers had to go by W3C.

    >I installed IE7 expecting my site to look more good. But I failed there also.

    This can be a good thing, because this means that the CSS is behaving the same in both IE6 and IE7 (even though it's an error). This way 1 solution will most likely solve them both.

    >I need to find solutions for FireFox 2 and IE7 as soon as possible.Is anyone as depressed as me, when it comes to different brower solutions.

    Yes, I was...Luckily (?) for me I was designing websites from scratch (creating my own html/css/javascript) for a while before I got into stuff like VS2005 that completely "automate" the process. So, I went through !@#$% with CSS browser compatibility and learned a lot (i think). I'd suggest searching for browser compatability issues and solutions with CSS, or just make tables as the layout instead of using CSS divs etc. It will be a LOOOOOOOOOOOOONG time before I stop using tables for layout. All you CSS fanatics can shake your finger at me, but I do use and love css for pretty much everything else...just not column/row layout, which always looks the same using tables.


    I like to dab in web design a little:
    www.flixgadget.com
    http://www.studentorg.vcu.edu/asuasu
  •  11-16-2006, 12:54 AM 352 in reply to 351

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Tables are definitely the way to go for consistent formatting.  And CSS helps the tables stay consistent with clearly defined elements and classes.  I too have been manually coding everything (HTML, Javascript, etc) before I finally got on the WYSIWYG development.....but I still check the HTML code myself even in VS.  Here's an example of why:

    One thing that I wish VS2005 didn't do.....when you create a table and set the cell properties to not wrap (nowrap), it generates this HTML code (Web Express Edition):

    <td nowrap="nowrap" style="width: 100px"></td>

    And this code is generated by VS2005 Professional:

    <td nowrap="" style="width: 100px">

    However, when you view the HTML code, it gives you a warning/error:

    However, when you view the HTML code, it gives you a warning/error:

    Web Express:  Warning 1 Validation (XHTML 1.0 Transitional): Attribute 'nowrap' is considered outdated. A newer construct is recommended.

    VS2005 Pro: Error 1 Validation (HTML 4.01): This attribute requires a value. If the value is enclosed in quotation marks, the quotation marks must match

    The correct code should be:

    <td style='white-space: nowrap; width: 100px;'><td>

    Not only do Pro and Express Editions create a table differently, but they both have the sense to use the STYLE attribute for the WIDTH, but why not for NOWRAP?

    Anyway, food for thought.  You definintely need CSS....even in-line styles like the above example can make a difference.


    William Eaton, MCSE
    iTech Computer Solutions, LLC
    www.itechcs.com
  •  11-16-2006, 2:24 AM 353 in reply to 352

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Oh my goodness...That's odd indeed, to say the least. I've never really had to use nowrap. I'll tell you what though, I actually like to handcode stuff like that (creating a custom css class in an externally linked file, and setting the tag's class to it) for the extremely basic elements, i.e. the ones that don't need to be .net controls. I don't really like using the style attribute at all (even if VS creates it automatically), unless it's very specific to that element...I almost always use classes, even if it's just for 1 element.

    I'm glad there's somebody out there that agrees with me about tables v.s. divs--if you look at my sites, I always use a table for layout and style it with a class. Simply put, html and css need each other.


    I like to dab in web design a little:
    www.flixgadget.com
    http://www.studentorg.vcu.edu/asuasu
  •  11-16-2006, 10:21 AM 356 in reply to 353

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Yeah, a template that one of my clients wanted to use was all DIV's....literally.  Not one TABLE in there.  I changed that and got rid of most of the DIV's.
    William Eaton, MCSE
    iTech Computer Solutions, LLC
    www.itechcs.com
  •  11-19-2006, 3:02 AM 366 in reply to 356

    Re: Have a look at this city Portal - developed with asp.net 2.0

    Good decesion! :)

    I like to dab in web design a little:
    www.flixgadget.com
    http://www.studentorg.vcu.edu/asuasu
View as RSS news feed in XML
Powered by Community Server, by Telligent Systems