Posts

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. ...