Friday, November 8, 2013

HyperLink in Reapeater Control ASP.NET

Add a HyperLink to a  Reapeater Control  in ASP.NET Place a Repeater control on a form. <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">     <div>         <asp:Repeater ID="Repeater1" runat="server">         <HeaderTemplate>         <table>  ...

Adding checkbox in Gridview

Gridview CheckBox In a form place a Gridview and edit columns. In the TemplateField add a CheckBox. Add BoundFileds to connect to database values. My table is as follows  <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"          BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px"          CellPadding="3" GridLines="Vertical"   DataKeyNames="rollno">      ...

Monday, July 22, 2013

Regular Expressiona in c#

Regular Expressions A regular expression is a set of characters that can be compared to a string to determine whether the string meets specified format requirements. You can also use regular expressions to extract portions of the text or to replace text. Which uses the System.Text.RegularExpressions namespace, performs this check using the static method System. Text.RegularExpressions.Regex.IsMatch method How to Use Regular Expressions for Pattern Matching Example:- “^\d{5}$” => means that the string must be exactly five numeric digits. "^" => Match beginning of input "\d" =>...

Sunday, June 23, 2013

LINQ

Language Integrated Query (LINQ) LINQ is a programming model that is the composition of general-purpose standard query operators that allow you to work with data, regardless of the data source in any .NET based programming language. It is the name given to a set of technologies based on the integration of query capabilities into any .NET language. What are the three main components of LINQ or Language INtegrated Query? 1. Standard Query Operators 2. Language Extensions 3. LINQ Providers How...

Wednesday, March 27, 2013

javascript in ASP.NET

learn javascript in asp.net Introduction de facto standard for client-side Web development Enable to build robust applications in combination with ASP.NET Mainly used to compensate limitations of ASP.NET  in terms of usage of custom controls JavaScript can allow you to create new things on your website that are both dynamic and interactive, allowing you to do things like find out some information about a user (like monitor resolution and browser), check that forms have been filled...

JavaScript Tutorial

Javascript online tutorial Javascript tutorial JavaScript Introduction JavaScript is the most popular scripting language on the internet, and works in all major browsers, such as Internet Explorer, Firefox, Chrome, Opera, and Safari. Definition of JavaScript • JavaScript was designed to add interactivity to HTML pages • JavaScript is a scripting language • A scripting language is a lightweight programming language • JavaScript is usually embedded directly into HTML pages • JavaScript is an interpreted language (means that scripts execute without preliminary compilation) • Everyone...

Page 1 of 2412345Next