Posts

Showing posts from December, 2019

count website visiter

source <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">         <div>             <h1>Count website visiters</h1>         </div>         <div>             <asp:Label ID="Label1" runat="server" style="font-size: xx-large" Text="Web Visiters   :"></asp:Label> &nbsp;<asp:Label ID="Label2" runat="server" style="font-size: x-large" Text="Label"></asp:Label>         </div>     </form> </body> </html> C# using System; using...

Get Email on Registration in C#

source <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <style type="text/css">         .auto-style1 {             text-align: justify;         }     </style> </head> <body>     <form id="form1" runat="server">         <div>             <h1> How to send Email</h1>         </div>         <div>             <table>                 <tr>                     <td class="auto-style1">       ...

Get msg on mobile number using getway

source <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <style type="text/css">         .auto-style1 {             font-size: xx-large;         }         .auto-style2 {             width: 70%;             height: 189px;         }     </style> </head> <body>     <form id="form1" runat="server">         <div class="auto-style1">             Send sms Ragistreted Person         </div>         <div>         ...

Image Upload into Database and get All images into the Grid View

Source code <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="imageuploadindatabase.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></title>     <style type="text/css">         .style1         {             width: 53%;             height: 250px;         }     </style> </head> <body>     <form id="form1" runat="server">     <div>              This project is represent to upload data inside database         <br />         ...