top of page

Basic .Net Layout - https://www.tutorialspoint.com/asp.net/asp.net_calenders.htm

 

<!-- directives -->

<% @Page Language="C#" %>

 

<!-- code section -->

<script runat="server">

 

   private void convertoupper(object sender, EventArgs e)

   {

      string str = mytext.Value;

      changed_text.InnerHtml = str.ToUpper();

   }

</script>

 

<!-- Layout -->

<html>

   <head>

      <title> Change to Upper Case </title>

   </head>

  

   <body>

      <h3> Conversion to Upper Case </h3>

     

      <form runat="server">

         <input runat="server" id="mytext" type="text" />

         <input runat="server" id="button1" type="submit" value="Enter..." OnServerClick="convertoupper"/>

        

         <hr />

         <h3> Results: </h3>

         <span runat="server" id="changed_text" />

      </form>

     

   </body>

  

</html>

Selecting a date and displaying it in a calendar - https://www.tutorialspoint.com/asp.net/asp.net_calenders.htm

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="calendardemo._Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

 

   <head runat="server">

      <title>

         Untitled Page

      </title>

   </head>

  

   <body>

      <form id="form1" runat="server">

     

         <div>

            <h3> Your Birthday:</h3>

            <asp:Calendar ID="Calendar1" runat="server  SelectionMode="DayWeekMonth" onselectionchanged="Calendar1_SelectionChanged">

            </asp:Calendar>

         </div>

        

         <p>Todays date is: 

            <asp:Label ID="lblday" runat="server"></asp:Label>

         </p>

        

         <p>Your Birthday is: 

            <asp:Label ID="lblbday" runat="server"></asp:Label>

         </p>

        

      </form>

   </body>

</html>

Retrieve data through a database - https://www.tutorialspoint.com/asp.net/asp.net_database_access.htm

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="dataaccess.aspx.cs"

   Inherits="datacaching.WebForm1" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

 

   <head runat="server">

      <title>

         Untitled Page

      </title>

   </head>

  

   <body>

      <form id="form1" runat="server">

         <div>

        

            <asp:SqlDataSource ID="SqlDataSource1" runat="server"

               ConnectionString= "<%$   ConnectionStrings:ASPDotNetStepByStepConnectionString%>"

               ProviderName= "<%$ ConnectionStrings:

                  ASPDotNetStepByStepConnectionString.ProviderName %>"

               SelectCommand="SELECT [Title], [AuthorLastName],

                  [AuthorFirstName], [Topic] FROM [DotNetReferences]">

            </asp:SqlDataSource>

           

            <asp:GridView ID="GridView1" runat="server"

               AutoGenerateColumns="False" CellPadding="4"

               DataSourceID="SqlDataSource1" ForeColor="#333333"

               GridLines="None">

               <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />

           

               <Columns>

                  <asp:BoundField DataField="Title" HeaderText="Title"

                     SortExpression="Title" />

                  <asp:BoundField DataField="AuthorLastName"

                     HeaderText="AuthorLastName" SortExpression="AuthorLastName" />

                  <asp:BoundField DataField="AuthorFirstName"

                     HeaderText="AuthorFirstName" SortExpression="AuthorFirstName" />

                  <asp:BoundField DataField="Topic"

                     HeaderText="Topic" SortExpression="Topic" />

               </Columns>

               <FooterStyle BackColor="#5D7B9D"

                  Font-Bold="True" ForeColor="White" />

               <PagerStyle BackColor="#284775"

                  ForeColor="White" HorizontalAlign="Center" />

               <SelectedRowStyle BackColor="#E2DED6"

                  Font-Bold="True" ForeColor="#333333" />

               <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" 

                  ForeColor="White" />

               <EditRowStyle BackColor="#999999" />

               <AlternatingRowStyle BackColor="White" ForeColor="#284775" />

            </asp:GridView>

         </div>

      </form>

   </body>

</html>

bottom of page