HTML/ASP help

Discussion in 'Web Programming' started by Br0ked Pure, Jun 2, 2011.

HTML/ASP help
  1. Unread #1 - Jun 2, 2011 at 11:05 PM
  2. Br0ked Pure
    Joined:
    Jun 2, 2011
    Posts:
    3
    Referrals:
    0
    Sythe Gold:
    0

    Br0ked Pure Newcomer

    HTML/ASP help

    Here is what I have so far:

    Code:
    <html>
    
    <head>
    <title> Magic-Instability - Essay Website </title>
    <H1><p align="Center">Magic Instability</p></h1>
    <p align="Center"> Just type/copypasta the essay onto here, then click the button 
    
    and you will be guided to the next step. </p>
    </head>
    
    <body>
    <form action="FormAction.asp" Method="Post" name="TextArea">
    <textarea rows="30" cols="155"> Insert your text here</textarea>
    
    <P><INPUT TYPE=SUBMIT VALUE="Submit">
    </form>
    </body>
    
    <center>
    </center>
    </html>
    I want "FormAction.asp" to SAVE what was in the textarea and keep it on there until I decide to delete it.

    Unfortunately, I don't know any ASP, and I've been told HTML can't do it, and only ASP can.

    Can anyone help me?
     
  3. Unread #2 - Sep 7, 2011 at 2:28 AM
  4. jonathanp198
    Joined:
    Aug 22, 2011
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    jonathanp198 Newcomer

    HTML/ASP help

    ASP.NET
    • Asp.NET is mainly used to develop web based applications
    • ASP.NET is a server side scripting technology that enables scripts to be executed by an Internet server.
    • Server side applications are those which are created and executed within the server. Client side applications are those which are created and executed within the browsers of the client machines.
    • ASP.NET is a Microsoft Technology
    • ASP stands for Active Server Pages
    • ASP.NET is a program that runs inside IIS
    • IIS (Internet Information Services) is Microsoft’s Internet server. (Formally called Internet Information Server).This IIS stores all the web apps/pages as virtual directory.
    • We can design the asp.net web application by using VS.net.
    • There are following ways of creating web application using vs .net.
    1. We can create it as HTTP,so that the application can be saved as virtual directory within IIS server.
    2. We can create and store it as file system within any logical drive.
    3. Two pages are created by default
    a. Default.aspx
    b. Web.config
    • Web.config is a secured file which cannot be accessed in browsers.
    • Web.config file is mainly required to give some application settings.
    • ASP.net web pages are mainly designed by using various web controls.
    ASP.NET Web Controls:-
    • Basic Controls (e.g.<asp:Button1>,<asp:Label1>,<asp:DropdownList1>etc)
    • HTML Controls (e.g.<input label1>)
    • Data Controls
    • Rich Controls
    • Ajax Controls
    • Login Controls
    • Validation Controls
    Asp.Net controls are known as POSTBACK Controls
    POSTBACK:-Every time page is displayed, on click it sends back the request again back to the server.
    Button,Textbox,Calender are also some of the default postback true controls.
    In Asp.net whenever the postback from any asp.net control,by default the page_load() is
    executed.
    Example: (C# code)
    public partial class _Default : System.Web.UI.Page
    {
    protected void Page_Load(object sender, EventArgs e)
    {
    Response.Write(DateTime.Now.ToString());
    }
    }

    Visit Us At: www.cegonsoft.com
    Cegonsoft
     
  5. Unread #3 - Sep 9, 2011 at 6:20 PM
  6. Ryan
    Joined:
    Mar 14, 2006
    Posts:
    2,946
    Referrals:
    31
    Sythe Gold:
    56

    Ryan Hopeless Romantic
    Banned

    HTML/ASP help

    Just use PHP and a MySQL database.
     
< cegonsoft coimbatore | Learn LINQ | Advertise4you Post2Host [Offshore Hosting]Official 2011!|Advertise your site for free >

Users viewing this thread
1 guest


 
 
Adblock breaks this site