Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

[1762] ASP.NET Web Forms

Last post 08-23-2005 4:15 PM by HardlyNoticable. 33 replies.
Page 1 of 3 (34 items) 1 2 3 Next >
Sort Posts: Previous Next
  • 01-01-1999 12:00 AM

    [1762] ASP.NET Web Forms

    This thread is for discussions of ASP.NET Web Forms.

    • Post Points: 0
  • Advertisement

    • Red Gate Software

    Advertisement

    Want to boost your .NET application performance?

    Some developers always seem to write efficient and lightening-fast code. What is their secret? It’s ANTS Profiler. “We improved the performance of the application up to 10 times” Dan Ports, Intrigma.

    Try it for yourself now.

  • 01-09-2003 12:00 AM In reply to

    ASPX

    This is great info and it works superb with IIS, but how are you all getting the files to work on your site?  I uploaded all the files, enabled folder actions did everything I can think of, but still can't seem to get it to work.  The files are here so you can see what I'm doing wrong.  Thanks!
    • Post Points: 0
  • 01-10-2003 3:42 PM In reply to

    Sorry

    Hey it was a problem with my web provider, they had to enable asp.net on my site.  Thanks anyways!
    • Post Points: 0
  • 02-28-2003 3:41 AM In reply to

    How to Call new page in ASP.Net

    Hi,

     I am beginer to ASP.Net. Can u tell how to call new page from the existing page.
     In VB.net by executing the statement "Form2.show()", New page will be loaded. In the same way how to load new page in ASP.Net   ?

    Thank U
    Suresh
    • Post Points: 0
  • 02-28-2003 5:53 AM In reply to

    • James Crowley
    • Top 10 Contributor
    • Joined on 12-07-2000
    • United Kingdom
    • Guru
    • Points 15,030
    • SystemAdministrator
    • Post Points: 0
  • 03-03-2003 3:57 AM In reply to

    Diffrence betwwen Web Form and HTML Form


    Hi,

    Please tell me what is the difference between "Web Form" and "HTML Form", and "Web Controls" and "HTML Controls" in ASP.Net.

    Thanx
    Suresh
    • Post Points: 0
  • 08-08-2003 10:13 AM In reply to

    • kimkakwe
    • Not Ranked
    • Joined on 08-08-2003
    • New Member
    • Points 5

    Starting ASP.NET

    Hi,

    Hope somebody will assist me. Have been doing ASP but i want to shift to ASP.NET.
    My problem is the software requirement and setting the environment to write ASP.NET websites.

    May somebody help?

    Cheers,
    Nicholas.

    • Post Points: 0
  • 08-08-2003 4:18 PM In reply to

    • atan
    • Not Ranked
    • Joined on 08-08-2003
    • New Member
    • Points 35

    How to use Message Box in ASP.NET Web Form?

    I am new to ASP.NET, please help me how use Message Box on ASP.NET Web Form?  I know used in VB is (Msgbox("message here"), so what is the key word use in ASP.NET Web Form.

    Thanks.
    • Post Points: 0
  • 09-06-2003 11:08 AM In reply to

    • svkoli
    • Not Ranked
    • Joined on 09-06-2003
    • New Member
    • Points 5
    Hi atan

    there's no keyword for displaying a MessageBox in ASP.NET. You have to register a ClientScriptBlock and Invoke this. Here's an exampla page

    Code:
    <%@ Page Language="C#" %>
    <script runat="server">
       void Button1_Click(object sender, EventArgs e)
       {
           string message = "MessageBoxTest";
           string alertScript = "<script language=JavaScript>";
           alertScript += "alert('" +message +"');";
           alertScript += "</script" +">";

           if (!IsClientScriptBlockRegistered("alert"))
               this.RegisterClientScriptBlock("alert", alertScript);
       }

    </script>
    <html>
    <head>
    </head>
    <body>
       <form runat="server">
           <asp:Button id="Button1" onclick="Button1_Click" runat="server" Text="Button"></asp:Button>
       </form>
    </body>
    </html>


    There also exists a free MessageBox Server-Component. You'll find it here
    MessageBox
    • Post Points: 0
  • 01-02-2004 4:04 AM In reply to

    Hi Aton,
    As SVKoli has said, its always better to comibe the code with client side scripts.
    Java Script or J Script will help you to do this... since Javascript is allmost read by all browsers.

    care
    scienty
    • Post Points: 0
  • 01-02-2004 4:04 AM In reply to

    Hi Aton,
    As SVKoli has said, its always better to comibe the code with client side scripts.
    Java Script or J Script will help you to do this... since Javascript is allmost read by all browsers.

    care
    scienty
    • Post Points: 0
  • 03-08-2004 2:40 PM In reply to

    • fregas
    • Not Ranked
    • Joined on 03-08-2004
    • United States
    • New Member
    • Points 10
    -A Web Form refers to the .aspx page that inherits from the System.Web.UI.Page class.
    -There is also an HtmlForm class that allows you to create and control an Html <Form> tag on the server.  You can create this in your .aspx page using <form runat="server"> and must place your input related tags/controls (buttons, text boxes, etc.) inside it. This will be rendered to the client as the standard HTML <form> tag.  
    -Web Controls are a group of classes in the System.Web.UI.WebControls namespace, such as labels, repeaters and datagrids, as well as the form related controls such as text boxes and buttons.
    -Html Controls are a group of classes similar to the web controls but they are in the System.Web.UI.HtmlControls namespace and are very simple controls that represent Html tags such as the HTML form mentioned above, buttons, text boxes, etc.  HtmlControls generally are not as feature rich as Web Controls and there are less of them.
    • Post Points: 0
  • 03-08-2004 2:43 PM In reply to

    • fregas
    • Not Ranked
    • Joined on 03-08-2004
    • United States
    • New Member
    • Points 10
    Check out web matrix at http://asp.net/webmatrix/default.aspx?tabIndex=4&tabId=46

    it has a built in web server and database for learning and writing asp.net pages.
    • Post Points: 0
  • 03-11-2004 3:19 AM In reply to

    • bassil
    • Not Ranked
    • Joined on 03-11-2004
    • New Member
    • Points 15
    you cann't call "Form2.show()" to let a new WebForm to show up..


    That's the Windows application 's methd, could not work on Webform in ASP.NET.

    You can use Transfer("NewPage2.aspx") or Redirect("xxx.aspx") at server side .vb code.
    • Post Points: 0
  • 03-11-2004 3:30 AM In reply to

    • bassil
    • Not Ranked
    • Joined on 03-11-2004
    • New Member
    • Points 15
    You can try this one:

    MessageBox for ASP.NET from  http://www.bassilsoft.com
    • Post Points: 0
Page 1 of 3 (34 items) 1 2 3 Next >