Posts

Showing posts from September, 2019

Asp.net my certificate

Image

ListBox Total information's

source <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="listbox18_9.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> </head> <body>     <form id="form1" runat="server">     <div>              <asp:ListBox ID="ListBox1" runat="server" Font-Bold="True" Font-Italic="True"              Font-Names="Bahnschrift Light Condensed" Font-Size="Large" ForeColor="#3399FF"              Height="100px" SelectionMode="Multiple" Width="100px">             <asp:ListItem>--Citys--</asp:Li...

How to Data retrieve from Database in Dropdown Box

source :      <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="dropdown_with_database.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> </head> <body>     <form id="form1" runat="server">     <div>         <asp:DropDownList id="list1" runat="server">         </asp:DropDownList>         <br />         <br />         <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="search" />         <br />         <br />         <...

How to insert items in to Dropdownlist

Image
First drag and drop your dropdownlist controal . click on Edit item... click on Add  selected by default false set text and gives values  click on ok and item is insert into dropdownlist. With source <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">     <div>              Add items in to dropdown Box<br />         <br />         <br />         <asp:DropDownList ID="DropDownList1" runat="server">             <asp:ListItem Value="1">Rajkot</asp:ListItem>         </asp:DropDownList>          </div>     </form> </body> ...

Toolbox Reporting , Html Controals and General

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them. 9. Reporting Controls: There is very short list of control available in this section that is Pointer and ReportViewer.   Pointer:  It is just a pointer. If we drag any other control on form it causes to create that control on form but pointer does not create any control on form. In other word we can say, we select it for to ignore any other selected control. ReportViewer:  This control is used to design full...

Toolbox Dynamic Data Controls

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them. 8. Dynamic Data Controls: ASP.NET Dynamic Data Controls are used to obtain schema information at run time. These controls also provide default display formats according to common user expectations and enable us to easily customize these formats.   Pointer:  It is just a pointer. If we drag any other control on form it causes to create that control on form but pointer does not create any control on form. In other wor...

Toolbox Webparts Controls

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them.   6. WebParts Controls: This section includes features like personalization of website. Using the controls given in this section user can modify the content, appearance, styles, and behaviors of web page directly from web browser. User can personalize the web application dynamically without having developer or administrator rights. Such changes can be applied to entire web application or only to individual users. ...

Toolbox Login Controls

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them.   5. Login Controls: Login Controls are used to create features like user can login, change the password, create new user, password recovery etc. Such controls are very useful in web applications. Pointer:  It is just a pointer. If we drag any other control on form it causes to create that control on form but pointer does not create any control on form. In other word we can say, we select it for to ignore any ot...

Toolbox Navigation

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them.   4. Navigation Controls: Navigation Controls are used to navigate in web application. Like by using a simple hyperlink we can navigate to another page but hyperlink can't show hierarchical or drop down menu or say links to navigate. Using Menu, SiteMapPath or TreeView control we can easily accomplish such tasks.   Pointer:  It is just a pointer. If we drag any other control on form it causes to create that...

Toolbox validation controls

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them.   3. Validation Controls: Such controls are used to validate the data of an input control. If the data does not pass validation, it will display an error message to the user. It is very-very useful in client side validation.   Pointer:  It is just a pointer. If we drag any other control on form it causes to create that control on form but pointer does not create any control on form. In other word we can say...

Toolbox Data

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them. 2. Data Controls Data Control section includes the controls which mostly let us to connect from external databases. Means in this section we are going introduce about all controls which have ability to leads the databases on web page. There are mainly two types of control we will find here that is DataSource Control and Data Control. For example DataSource Controls includes controls like EntityDataSource, LinqDataSource, O...

Toolbox information standard

Image
Introduction Toolbox is very-very important building block of .NET Framework. Toolbox is an area where all the controls existed. It helps the developer to develop any application very quickly, only drag the control from the toolbox and drop it on the form. To change its properties we have to select the control and make the properties changes from Properties window. We can do it manually by writing code-behind. There are over 100 controls available in ASP.NET 4.0. I am listing here all the controls available in ASP.NET 4.0 and writing some lines on each of them. 1. Standard Controls Name explains everything. This section includes list of controls which is widely used.   Pointer:  It is just a pointer. If we drag any other control on form it causes to create that control on form but pointer does not create any control on form. In other word we can say, we select it for to ignore any other selected control. AdRotator:  This control is used to display the ima...

How to check your password and id match or not in Database

source :  <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_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></title> </head> <body>     <form id="form1" runat="server">     <div>              id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;         <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>         <br />         <br />         password&nbsp;&nbsp;&nbsp;...