how to create dynamic database using sql server and asp.net

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

  1. #1

    Default how to create dynamic database using sql server and asp.net

    Hi,
    I am trying to build a web based system using asp.net and
    sql server.
    I would like to know on how to dynamically create a
    webpage from a webpage, and at the same time dynamically
    create the database in the back end.
    For instance, there is a maintenance page in the client
    side where user can add new webpages and automatically
    created the database for the new type of data in the new
    webpages.
    mhnazly Guest

  2. Similar Questions and Discussions

    1. How to create dynamic VO
      Hello, I am trying to learn how to amend a vo dynamically based on the data it is fed. Can anyone point me in th right direction? Thanks in...
    2. Create dynamic movies with data from database
      I am looking for a way to create dynamic movie files that need to be embedded in each user's login when the user logs in to his/her home page. The...
    3. create dynamic columns
      Any one knows how to display sentence in 3 colums in coldfusion . Thank you!
    4. ANN: MX CSS Dynamic Menu - create navigation menus from database
      Hi, We've released a new product - MX CSS Dynamic Menus. It's the solution both designers and developers have been looking for, to bridge the gap...
    5. MX CSS Dynamic Menu - create navigation menus from database
      Looks good, Alexandru. Congratulations! -- Marja Ribbers-de Vroed Company website: www.webwaresystems.nl Dreamweaver extensions:...
  3. #2

    Default Re: how to create dynamic database using sql server and asp.net

    - Use a web-based html editor, such as
    [url]http://www.richtextbox.com/richtextbox/[/url]
    - Use CREATE DATABASE, as described in the BOL.
    - For asp.net issues, specifically, see here. [url]http://www.aspfaq.com/5002[/url]

    Ray at work

    "mhnazly" <mhnazly@programmer.net> wrote in message
    news:1d9b01c38814$f9d73560$3501280a@phx.gbl...
    > Hi,
    > I am trying to build a web based system using asp.net and
    > sql server.
    > I would like to know on how to dynamically create a
    > webpage from a webpage, and at the same time dynamically
    > create the database in the back end.
    > For instance, there is a maintenance page in the client
    > side where user can add new webpages and automatically
    > created the database for the new type of data in the new
    > webpages.

    Ray at Guest

  4. #3

    Default Re: how to create dynamic database using sql server and asp.net

    On Wed, 1 Oct 2003 05:10:16 -0700, "mhnazly" <mhnazly@programmer.net>
    wrote:
    >I am trying to build a web based system using asp.net and
    >sql server.
    >I would like to know on how to dynamically create a
    >webpage from a webpage, and at the same time dynamically
    >create the database in the back end.
    >For instance, there is a maintenance page in the client
    >side where user can add new webpages and automatically
    >created the database for the new type of data in the new
    >webpages.
    I'll leave off the discussion of what data and whether you want a new
    database or just a table, but since you mentioned SQL Server your job
    is rather simple. A SQL query with a CREATE DATABASE will do the job
    you are asking about, you may want to check a SQL group or the SQL
    Books Online for specifics of the syntax.

    Jeff
    Jeff Cochran Guest

  5. #4

    Default Re: how to create dynamic database using sql server and asp.net

    You may also have luck asking ASP.NET questions here:

    Newsgroup:
    microsoft.public.dotnet.framework.aspnet

    SitePoint .NET Forum
    [url]http://www.sitepointforums.com/forumdisplay.php?s=&daysprune=1000&forumi[/url]
    d=141

    ASP Messageboard - ASP.NET Forum
    [url]http://www.aspmessageboard.com/forum/aspplus.asp[/url]

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Developer
    [url]http://www.Bullschmidt.com[/url]
    ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt 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