Search

You searched for the word(s): userid:741514

Matching Posts

  • Re: a business site i am learning to build

    View the vidoes on "Working with Stylesheets and Master Pages" to understand the way content is layed out. . http://www.asp.net/learn/videos/video-09.aspx http://www.asp.net/learn/master-pages/ Then check out the video on "Working with the GridView and FormView" as most pages are using the GridView. http://www.asp.net/learn/videos/video-07.aspx That is just a starting point and I would also look more in depth about using themes. http://www.asp.net/learn/videos/video-44.aspx Viewing
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/6/2008
  • Re: Displaying 6 images in itemdetails.aspx but it shows the same image

    Your trying to eval a column that dosn't exist (string)Eval("ImageUrl1") The name of the column is ImageUrl not ImageUrl1 - N You would of had to add this to your XML or Database table and edit Item.cs (in App_Code folder) accordingly.
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: Menu display is not nice?

    Adjust the width of the menu tag in the Master Page (I forget what the original was but I had to adjust mine to 500px)
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: Background image not firing

    Make sure that it is located 2 directories above the location of your style sheet in the images folder (did the orginal image get deleted or over wrote). You can also add an images directory to your theme folder and copy the image in there and change the line like so: background : url(images/bg-three-column-main.png) repeat-y ; this method is better when adding multiple themes to the site that may change dynamically according to who logged in.
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: Rounded edges work without corner images?!?!

    You pretty much answered your own question. Check out this image inside of an image viewer: images/bg-nav.png This is in your style sheet #nav-main { background : #FB83BA url(../../images/bg-nav.png) no-repeat ; margin-left : auto ; margin-right : auto ; width : 740px ; padding : .8em 0 1em 20px ; position : relative ; font-weight : bold ; } and the class is called out in your Master Page < div id ="nav-main">
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: News Page Multiple Page links

    It is in News.aspx look at the page in design mode and you will be able to see the properties of the gridview GridViewAllNews Look at this artice on how to change Paging settings on the gridview http://msdn.microsoft.com/en-us/library/5aw1xfh3.aspx
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: I'm missing something really basic

    It is in the CSS file css-content.css under App_Themes\Standard folder. #nav-main { background : #FB83BA url(../../images/bg-nav.png) no-repeat ; margin-left : auto ; margin-right : auto ; width : 740px ; padding : .8em 0 1em 20px ; position : relative ; font-weight : bold ; } #nav-main div { background : #4b6cb5 url(../../images/bg-nav-side.png) top right no-repeat ; width : 25% ; _width : 25.5% ; position : absolute ; top : 0 ; right : 0 ; padding : .8em 0 1em 0 ; }
    Posted to Small Business Starter Kit (Forum) by Cyriacus on 6/5/2008
  • Re: MaskedEdit example fails to follow culture settings for date input.

    Sorry for the long delay busy on a project! Set your browser (I.E. 7) language to French (Canada) [fr-CA] . Enter date as dd-mm-yyyy i.e. 18-03-2007 You will get an error and your input box will reformat to 00-18-0320 Enter 03-18-2007 (just in case it didn't recognize the culture) You will get an error and your input box will reformat to 00-03-1820 Set your language to English (United Kingdom) [en-GB] Enter the same dates and 18/03/2007 is valid (as it should be), 03/18/2007 is invalid (as it
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Cyriacus on 6/28/2007
  • MaskedEdit example fails to follow culture settings for date input.

    A few days ago prior to the update the sample passed English (Canada) (dd/mm/yyyy) but failed French (Canada) . After 6/7/07 update it acts as if the culture were English (United States) and will only take input of (mm/dd/yyyy).
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Cyriacus on 6/8/2007
Page 1 of 1 (9 items)