Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Maintain appearance

    Hello all,

    I've developed a website system that stores all the pages
    of a website into a database table (id int, content
    text). Is there a way that a user could say type all
    their editing (underlines, bolds, colors, etc.) in a
    separate place then insert it into a database that will
    then use their exisiting edits (underlines, bolds, colors,
    etc) when displaying their webpage in a browser window.

    The page is retrieved from the querystring (ex. page.asp?
    id=4)

    The database field that holds the text of a page is a text
    field, it can take HTML, but I don't want to require the
    user know HTML when inserting their data.
    Shawn Guest

  2. Similar Questions and Discussions

    1. Appearance in different browsers
      My web pages look fine in Safari, but lose almost all formatting in Firefox and Explorer. Is there a setting wrong that I can adjust or do I have to...
    2. FLV appearance - different between IE and Firefox
      I have been creating a large number of FLV files, using the On2 VP6 plugin and have been testing the uploaded videos on different browsers, on...
    3. DataGrid Buttons Appearance
      I have been trying to figure out how to change the color of the Button on my datagrid. And when I try to change the back color it changes the color...
    4. _mm folder appearance
      All created user roles disappearing in a 2-3 days. I have to recreate all the keys again. Should I see the _mm folder in Dreamweaver?
    5. Panel appearance
      For some reason panels in my Flash MX program now appear to be modified for somebody with poor eyesight. The text in them is really big, and they...
  3. #2

    Default Re: Maintain appearance


    "Shawn" <programming@jards.com> wrote in message
    news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    > Hello all,
    >
    > I've developed a website system that stores all the pages
    > of a website into a database table (id int, content
    > text). Is there a way that a user could say type all
    > their editing (underlines, bolds, colors, etc.) in a
    > separate place then insert it into a database that will
    > then use their exisiting edits (underlines, bolds, colors,
    > etc) when displaying their webpage in a browser window.
    >
    > The page is retrieved from the querystring (ex. page.asp?
    > id=4)
    >
    > The database field that holds the text of a page is a text
    > field, it can take HTML, but I don't want to require the
    > user know HTML when inserting their data.
    Why don't you have

    ID, content, csspage

    if you are not familer with CSS.

    put this in a page and save it as test.css

    A{
    text-decoration: underline
    }

    then put this in the html page
    <LINK rel="stylesheet" type="text/css" href="test.css">


    you can find all the properties for CSS here
    [url]http://msdn.microsoft.com/workshop/author/css/reference/css_ref_entry.asp?frame=true[/url]


    Mosley Guest

  4. #3

    Default Re: Maintain appearance

    That seems good, but what about when a person wants a
    certain headline to be bold? Like for instance, lets
    assume this is the text:

    Content: My Content (title)
    fdas as fsjda;kfsdfsda kasdf asdfas f
    fas;lk jaskl jfk;lsjfskadas kasf;s as
    faslkjf; ksakfsa;jkfdas fjsdakf a
    fkj;dasf (underline that) fdasjfsdaf

    How could a stylesheet take into account those random
    underlines, or bold text that could be anywhere in the
    text?

    Please let me know.

    Sf



    >-----Original Message-----
    >
    >"Shawn" <programming@jards.com> wrote in message
    >news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    >> Hello all,
    >>
    >> I've developed a website system that stores all the
    pages
    >> of a website into a database table (id int, content
    >> text). Is there a way that a user could say type all
    >> their editing (underlines, bolds, colors, etc.) in a
    >> separate place then insert it into a database that will
    >> then use their exisiting edits (underlines, bolds,
    colors,
    >> etc) when displaying their webpage in a browser window.
    >>
    >> The page is retrieved from the querystring (ex.
    page.asp?
    >> id=4)
    >>
    >> The database field that holds the text of a page is a
    text
    >> field, it can take HTML, but I don't want to require the
    >> user know HTML when inserting their data.
    >
    >Why don't you have
    >
    >ID, content, csspage
    >
    >if you are not familer with CSS.
    >
    >put this in a page and save it as test.css
    >
    >A{
    > text-decoration: underline
    >}
    >
    >then put this in the html page
    ><LINK rel="stylesheet" type="text/css" href="test.css">
    >
    >
    >you can find all the properties for CSS here
    >[url]http://msdn.microsoft.com/workshop/author/css/reference/cs[/url]
    s_ref_entry.asp?frame=true
    >
    >
    >.
    >
    Shawn Guest

  5. #4

    Default Re: Maintain appearance

    Not too long ago in the asp.general group I saw a reference to a component
    that created an HTML Editbox that should do what you want. Try browsing the
    last month or so and look for "HTML editor" or "RTF Editor".

    --
    Mark Schupp
    --
    Head of Development
    Integrity eLearning
    Online Learning Solutions Provider
    [email]mschupp@ielearning.com[/email]
    [url]http://www.ielearning.com[/url]
    714.637.9480 x17


    "Shawn" <programming@jards.com> wrote in message
    news:0c3a01c34550$4fccfc00$a501280a@phx.gbl...
    > That seems good, but what about when a person wants a
    > certain headline to be bold? Like for instance, lets
    > assume this is the text:
    >
    > Content: My Content (title)
    > fdas as fsjda;kfsdfsda kasdf asdfas f
    > fas;lk jaskl jfk;lsjfskadas kasf;s as
    > faslkjf; ksakfsa;jkfdas fjsdakf a
    > fkj;dasf (underline that) fdasjfsdaf
    >
    > How could a stylesheet take into account those random
    > underlines, or bold text that could be anywhere in the
    > text?
    >
    > Please let me know.
    >
    > Sf
    >
    >
    >
    >
    > >-----Original Message-----
    > >
    > >"Shawn" <programming@jards.com> wrote in message
    > >news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    > >> Hello all,
    > >>
    > >> I've developed a website system that stores all the
    > pages
    > >> of a website into a database table (id int, content
    > >> text). Is there a way that a user could say type all
    > >> their editing (underlines, bolds, colors, etc.) in a
    > >> separate place then insert it into a database that will
    > >> then use their exisiting edits (underlines, bolds,
    > colors,
    > >> etc) when displaying their webpage in a browser window.
    > >>
    > >> The page is retrieved from the querystring (ex.
    > page.asp?
    > >> id=4)
    > >>
    > >> The database field that holds the text of a page is a
    > text
    > >> field, it can take HTML, but I don't want to require the
    > >> user know HTML when inserting their data.
    > >
    > >Why don't you have
    > >
    > >ID, content, csspage
    > >
    > >if you are not familer with CSS.
    > >
    > >put this in a page and save it as test.css
    > >
    > >A{
    > > text-decoration: underline
    > >}
    > >
    > >then put this in the html page
    > ><LINK rel="stylesheet" type="text/css" href="test.css">
    > >
    > >
    > >you can find all the properties for CSS here
    > >[url]http://msdn.microsoft.com/workshop/author/css/reference/cs[/url]
    > s_ref_entry.asp?frame=true
    > >
    > >
    > >.
    > >

    Mark Schupp Guest

  6. #5

    Default Re: Maintain appearance

    Thanks, I found that one and another one that I felt you
    all should know about, totally free.

    [url]http://www.interactivetools.com/products/htmlarea/[/url]

    Enjoy and Thanks a million!
    >-----Original Message-----
    >Not too long ago in the asp.general group I saw a
    reference to a component
    >that created an HTML Editbox that should do what you
    want. Try browsing the
    >last month or so and look for "HTML editor" or "RTF
    Editor".
    >
    >--
    >Mark Schupp
    >--
    >Head of Development
    >Integrity eLearning
    >Online Learning Solutions Provider
    >mschupp@ielearning.com
    >[url]http://www.ielearning.com[/url]
    >714.637.9480 x17
    >
    >
    >"Shawn" <programming@jards.com> wrote in message
    >news:0c3a01c34550$4fccfc00$a501280a@phx.gbl...
    >> That seems good, but what about when a person wants a
    >> certain headline to be bold? Like for instance, lets
    >> assume this is the text:
    >>
    >> Content: My Content (title)
    >> fdas as fsjda;kfsdfsda kasdf asdfas f
    >> fas;lk jaskl jfk;lsjfskadas kasf;s as
    >> faslkjf; ksakfsa;jkfdas fjsdakf a
    >> fkj;dasf (underline that) fdasjfsdaf
    >>
    >> How could a stylesheet take into account those random
    >> underlines, or bold text that could be anywhere in the
    >> text?
    >>
    >> Please let me know.
    >>
    >> Sf
    >>
    >>
    >>
    >>
    >> >-----Original Message-----
    >> >
    >> >"Shawn" <programming@jards.com> wrote in message
    >> >news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    >> >> Hello all,
    >> >>
    >> >> I've developed a website system that stores all the
    >> pages
    >> >> of a website into a database table (id int, content
    >> >> text). Is there a way that a user could say type all
    >> >> their editing (underlines, bolds, colors, etc.) in a
    >> >> separate place then insert it into a database that
    will
    >> >> then use their exisiting edits (underlines, bolds,
    >> colors,
    >> >> etc) when displaying their webpage in a browser
    window.
    >> >>
    >> >> The page is retrieved from the querystring (ex.
    >> page.asp?
    >> >> id=4)
    >> >>
    >> >> The database field that holds the text of a page is a
    >> text
    >> >> field, it can take HTML, but I don't want to require
    the
    >> >> user know HTML when inserting their data.
    >> >
    >> >Why don't you have
    >> >
    >> >ID, content, csspage
    >> >
    >> >if you are not familer with CSS.
    >> >
    >> >put this in a page and save it as test.css
    >> >
    >> >A{
    >> > text-decoration: underline
    >> >}
    >> >
    >> >then put this in the html page
    >> ><LINK rel="stylesheet" type="text/css" href="test.css">
    >> >
    >> >
    >> >you can find all the properties for CSS here
    >>
    >[url]http://msdn.microsoft.com/workshop/author/css/reference/cs[/url]
    >> s_ref_entry.asp?frame=true
    >> >
    >> >
    >> >.
    >> >
    >
    >
    >.
    >
    Shawn Guest

  7. #6

    Default Re: Maintain appearance


    "Shawn" <programming@jards.com> wrote in message
    news:01cc01c3456f$ec020e70$a301280a@phx.gbl...
    > Thanks, I found that one and another one that I felt you
    > all should know about, totally free.
    A{
    text-decoration : underline ;
    font-weight : 900
    }


    you can look them all up here
    [url]http://msdn.microsoft.com/workshop/author/css/reference/css_ref_entry.asp?frame=true[/url]



    >
    > [url]http://www.interactivetools.com/products/htmlarea/[/url]
    >
    > Enjoy and Thanks a million!
    > >-----Original Message-----
    > >Not too long ago in the asp.general group I saw a
    > reference to a component
    > >that created an HTML Editbox that should do what you
    > want. Try browsing the
    > >last month or so and look for "HTML editor" or "RTF
    > Editor".
    > >
    > >--
    > >Mark Schupp
    > >--
    > >Head of Development
    > >Integrity eLearning
    > >Online Learning Solutions Provider
    > >mschupp@ielearning.com
    > >[url]http://www.ielearning.com[/url]
    > >714.637.9480 x17
    > >
    > >
    > >"Shawn" <programming@jards.com> wrote in message
    > >news:0c3a01c34550$4fccfc00$a501280a@phx.gbl...
    > >> That seems good, but what about when a person wants a
    > >> certain headline to be bold? Like for instance, lets
    > >> assume this is the text:
    > >>
    > >> Content: My Content (title)
    > >> fdas as fsjda;kfsdfsda kasdf asdfas f
    > >> fas;lk jaskl jfk;lsjfskadas kasf;s as
    > >> faslkjf; ksakfsa;jkfdas fjsdakf a
    > >> fkj;dasf (underline that) fdasjfsdaf
    > >>
    > >> How could a stylesheet take into account those random
    > >> underlines, or bold text that could be anywhere in the
    > >> text?
    > >>
    > >> Please let me know.
    > >>
    > >> Sf
    > >>
    > >>
    > >>
    > >>
    > >> >-----Original Message-----
    > >> >
    > >> >"Shawn" <programming@jards.com> wrote in message
    > >> >news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    > >> >> Hello all,
    > >> >>
    > >> >> I've developed a website system that stores all the
    > >> pages
    > >> >> of a website into a database table (id int, content
    > >> >> text). Is there a way that a user could say type all
    > >> >> their editing (underlines, bolds, colors, etc.) in a
    > >> >> separate place then insert it into a database that
    > will
    > >> >> then use their exisiting edits (underlines, bolds,
    > >> colors,
    > >> >> etc) when displaying their webpage in a browser
    > window.
    > >> >>
    > >> >> The page is retrieved from the querystring (ex.
    > >> page.asp?
    > >> >> id=4)
    > >> >>
    > >> >> The database field that holds the text of a page is a
    > >> text
    > >> >> field, it can take HTML, but I don't want to require
    > the
    > >> >> user know HTML when inserting their data.
    > >> >
    > >> >Why don't you have
    > >> >
    > >> >ID, content, csspage
    > >> >
    > >> >if you are not familer with CSS.
    > >> >
    > >> >put this in a page and save it as test.css
    > >> >
    > >> >A{
    > >> > text-decoration: underline
    > >> >}
    > >> >
    > >> >then put this in the html page
    > >> ><LINK rel="stylesheet" type="text/css" href="test.css">
    > >> >
    > >> >
    > >> >you can find all the properties for CSS here
    > >>
    > >[url]http://msdn.microsoft.com/workshop/author/css/reference/cs[/url]
    > >> s_ref_entry.asp?frame=true
    > >> >
    > >> >
    > >> >.
    > >> >
    > >
    > >
    > >.
    > >

    Mosley Guest

  8. #7

    Default Re: Maintain appearance

    Pretty nice looking but doesn't work with NS (tried 4.5 and 7). It degrades
    to a plain text area.

    --
    Mark Schupp
    --
    Head of Development
    Integrity eLearning
    Online Learning Solutions Provider
    [email]mschupp@ielearning.com[/email]
    [url]http://www.ielearning.com[/url]
    714.637.9480 x17


    "Shawn" <programming@jards.com> wrote in message
    news:01cc01c3456f$ec020e70$a301280a@phx.gbl...
    > Thanks, I found that one and another one that I felt you
    > all should know about, totally free.
    >
    > [url]http://www.interactivetools.com/products/htmlarea/[/url]
    >
    > Enjoy and Thanks a million!
    > >-----Original Message-----
    > >Not too long ago in the asp.general group I saw a
    > reference to a component
    > >that created an HTML Editbox that should do what you
    > want. Try browsing the
    > >last month or so and look for "HTML editor" or "RTF
    > Editor".
    > >
    > >--
    > >Mark Schupp
    > >--
    > >Head of Development
    > >Integrity eLearning
    > >Online Learning Solutions Provider
    > >mschupp@ielearning.com
    > >[url]http://www.ielearning.com[/url]
    > >714.637.9480 x17
    > >
    > >
    > >"Shawn" <programming@jards.com> wrote in message
    > >news:0c3a01c34550$4fccfc00$a501280a@phx.gbl...
    > >> That seems good, but what about when a person wants a
    > >> certain headline to be bold? Like for instance, lets
    > >> assume this is the text:
    > >>
    > >> Content: My Content (title)
    > >> fdas as fsjda;kfsdfsda kasdf asdfas f
    > >> fas;lk jaskl jfk;lsjfskadas kasf;s as
    > >> faslkjf; ksakfsa;jkfdas fjsdakf a
    > >> fkj;dasf (underline that) fdasjfsdaf
    > >>
    > >> How could a stylesheet take into account those random
    > >> underlines, or bold text that could be anywhere in the
    > >> text?
    > >>
    > >> Please let me know.
    > >>
    > >> Sf
    > >>
    > >>
    > >>
    > >>
    > >> >-----Original Message-----
    > >> >
    > >> >"Shawn" <programming@jards.com> wrote in message
    > >> >news:05b401c344c6$c3e0f860$a101280a@phx.gbl...
    > >> >> Hello all,
    > >> >>
    > >> >> I've developed a website system that stores all the
    > >> pages
    > >> >> of a website into a database table (id int, content
    > >> >> text). Is there a way that a user could say type all
    > >> >> their editing (underlines, bolds, colors, etc.) in a
    > >> >> separate place then insert it into a database that
    > will
    > >> >> then use their exisiting edits (underlines, bolds,
    > >> colors,
    > >> >> etc) when displaying their webpage in a browser
    > window.
    > >> >>
    > >> >> The page is retrieved from the querystring (ex.
    > >> page.asp?
    > >> >> id=4)
    > >> >>
    > >> >> The database field that holds the text of a page is a
    > >> text
    > >> >> field, it can take HTML, but I don't want to require
    > the
    > >> >> user know HTML when inserting their data.
    > >> >
    > >> >Why don't you have
    > >> >
    > >> >ID, content, csspage
    > >> >
    > >> >if you are not familer with CSS.
    > >> >
    > >> >put this in a page and save it as test.css
    > >> >
    > >> >A{
    > >> > text-decoration: underline
    > >> >}
    > >> >
    > >> >then put this in the html page
    > >> ><LINK rel="stylesheet" type="text/css" href="test.css">
    > >> >
    > >> >
    > >> >you can find all the properties for CSS here
    > >>
    > >[url]http://msdn.microsoft.com/workshop/author/css/reference/cs[/url]
    > >> s_ref_entry.asp?frame=true
    > >> >
    > >> >
    > >> >.
    > >> >
    > >
    > >
    > >.
    > >

    Mark Schupp Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139