SlideShare a Scribd company logo
Controls in asp.net
Disclaimer: This presentation is prepared by trainees of
baabtra as a part of mentoring program. This is not official
document of baabtra –Mentoring Partner
Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt .
Ltd
Week Target Achieved
1 25W
mp
22Wmp
2
3
Typing Speed
Jobs Applied
Week Company Designation Applied Date Current Status
1
2
3
Controls in Asp.Net
Shajeer pk
shajeerpk2@gmail.com
Shajeer Pk
Shajeer pk
Shajeer pk
9544559642
Controls
• Control is a inbuilt function
• When we are using control that automatically
generate html code
• Controls used for designing
• property- A property is a thing that describes
the features of an object. A property is a piece
of data contained within a class that has an
exposed interface for reading/writing. Looking
at this definition
• Event- An action that an object does. When
something happens, we say an event has
happened
Standard Controls
Label
• Ideally Label control is used to place a static,
non clickable (can't fire onclick event) piece of
text.
properties
• AccessKey, Attributes, BackColor, BorderColor,
BorderStyle, BorderWidth, CssClass, Enabled,
Font, EnableTheming, ForeColor, Height,
IsEnabled, SkinID, Style, TabIndex, ToolTip,
Width,text,id
Text Box
• The TextBox control is used to create a text
box where the user can input text.
• A text box's purpose is to allow the user to
input text information to be used by the
program.
• AccessKey, Attributes, BackColor, BorderColor, BorderStyle, BorderWidth,
CssClass, Enabled, Font, EnableTheming, ForeColor, Height, IsEnabled,
SkinID, Style, TabIndex, ToolTip, Width,Id
Button
• The Button control is used to display a push
button. The push button may be a submit
button or a command button. By default, this
control is a submit button.
• A submit button does not have a command
name and it posts the page back to the server
when it is clicked. It is possible to write an
event handler to control the actions
performed when the submit button is clicked.
Link button
• The LinkButton control is used to create a
hyperlink button.
PostBackUrl
• Gets or sets the URL of the page to post to
from the current page when
the LinkButton control is clicked.
Hyper link
• HyperLink will not PostBack page to the
server. It will post a simple request to the
server for the URL you set as href. The
LinkButton works exactly as a normal Button
but it looks like an HyperLink, so it will
PostBack your page to the server allowing you
to do your business operations. Another
(obvious) difference is that the HyperLink
doesn't have the OnClick event.
List Box
• The List Box control is used to create a single-
or multi-selection drop-down list.
• Each selectable item in a List Box control is
defined by a ListItem element
main property of list box
collection – add items in list box
Check box
• The CheckBoxList control is used to create a
multi-selection check box group.
• Each selectable item in a CheckBoxList control
is defined by a ListItem element
important property
checked- two values true or false
DropDownList
• The DropDownList control is used to create a
drop-down list.
• Each selectable item in a DropDownList
control is defined by a ListItem element.
Imported properties
• SelectedIndex
• Items
• SelectedItem
Radio button
• The RadioButton control is used to display a
radio button.
• To select one option.
One of the important properties
Checked-two values true or false
RadioButtonList
• The RadioButtonList control is used to create a
group of radio buttons.
• Each selectable item in a RadioButtonList
control is defined by a ListItem element
The important properties
DataTextField
DataValueField
Image
• The Image control is used to display an image.
the important properties
The Important Properties
DescriptionUrl-The location to a detailed
description for the image
ImageUrl-The URL of the image to display for the
link
ImageAlign-The URL of the image to display for the
link
Imagemap
• The ASP.NET ImageMap control allows you to
create an image that has individual regions that
users can click, which are called hot spots. Each
of these hot spots can be a separate hyperlink or
postback event.
• The imported property is -image url-to get image
• hot spot-to add hot spot
CircleHotspot
RectangleHotspot
PolygonHotspot
Controls in asp.net
BulletedList
• The BulletedList control creates a list in bullet
format.
• Each item in a BulletedList control is defined
by a ListItem element
Imported properties
• Items-to specifies items
• Bullet style-Specifies the style of the bullet list
HiddenField
• It is to use for a hide control,its not display at
runtime.
Properties
Only two property
1:text
2:visible
Literal
• The Literal Control is similar to the Label Control
as they both are used to display static text on a
web page.
• Unlike Label control, there is no property like
BackColor, ForeColor, BorderColor, BorderStyle,
BorderWidth, Height etc. for Literal control. That
makes it more powerful, you can even put a pure
HTML contents into it.
• This is a light waight control.
Calendar
• To add a calendar in a web page.
• This is to display month and date a calendar
formate.
Property
Selected Date
AdRotater
• AdRotator control to display advertisements
in an ASP.NET Web site
• The AdRotator control allows developers to
place graphical advertisements on a Web
Form and provides programmatic functionality
that enables the development of custom logic
to track advertisement clicks.
Properties
KeywordFilter-support
File Upload
• This property to help us to browse a file and
upload
Properties
FileName:It is the path of the file;
If we wants to add a file using file uploader we
will get its path in file Upaload.fileName
Wizard control
• It is to use a deferent type of controls in
deferent time.
• It is a step by step formatting
Main Property
Display cancel-To display cancel button
In This Control we are add how much step we
want to add
Controls in asp.net
Controls in asp.net
Controls in asp.net
Grid View
• The GridView and Details View controls are
commonly used in a Master/Detail page. A
Master/Detail page is a page that displays a
list of items from a database along with the
details of a selected item in the list
Repeater
• The Repeater control is used to display a repeated list
of items that are bound to the control
• Following are the major differences between repeater
and gridview controls: 1- Repeater is a light weight
control and gridview is a heavy control. 2- Repeater
doesn’t provide any built-in support to format the data
whereas the gridview control has a very good support
to format, sort and align the data. 3- Repeater provides
more customization than gridview. 4- It is difficult to
display data with repeater than gridview.
DataList
• The DataList control is, like the Repeater
control, used to display a repeated list of
items that are bound to the control. However,
the DataList control adds a table around the
data items by default.
• light weight control, and acts as a container of
repeated data items. The templates in this
control are used to define the data that it will
contain.
Details view
• Details View help us to show data one record
at a time
Sql datasourse,accessdatasourse,Xmldatasourse
• The following are asses to sql database
Controls in asp.net
Controls in asp.net
Controls in asp.net
Controls in asp.net
Validater
Required validater
• Required validater validate for entering
compalsery
Properties
Control to validate:validate for wich control
Text:wich text we want to validate
Range validater
• To validate one condition
The following are the prpperties
1:Requared field Validater
2:Maximum value
3:minimum value
Regular Expression validater
1:Requared field Validater
2:range validater
3:Regular expressin validater
5:validate summery
Thanks
Contact Us
Emarald Mall (Big Bazar Building)
Mavoor Road, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
NC Complex, Near Bus Stand
Mukkam, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
Start up Village
Eranakulam,
Kerala, India.
Email: info@baabtra.com
If this presentation helped you, please visit our
page facebook.com/baabtra and like it.
Thanks in advance.
www.baabtra.com | www.massbaab.com |www.baabte.com

More Related Content

What's hot (20)

PPT
Introduction to BOOTSTRAP
Jeanie Arnoco
 
PPT
Jdbc ppt
Vikas Jagtap
 
PPT
Java Servlets
BG Java EE Course
 
PPT
PHP - Introduction to Object Oriented Programming with PHP
Vibrant Technologies & Computers
 
PPSX
ASP.NET Web form
Md. Mahedee Hasan
 
PPT
RichControl in Asp.net
Bhumivaghasiya
 
PPT
Server Controls of ASP.Net
Hitesh Santani
 
PPTX
Java Server Pages(jsp)
Manisha Keim
 
PPTX
Event In JavaScript
ShahDhruv21
 
PDF
Introduction to asp.net
SHADAB ALI
 
PPT
SQLITE Android
Sourabh Sahu
 
PPTX
Delegates and events in C#
Dr.Neeraj Kumar Pandey
 
PPTX
ASP.NET - Life cycle of asp
priya Nithya
 
PPTX
ASP.NET State management
Shivanand Arur
 
PPT
Architecture of .net framework
Then Murugeshwari
 
PDF
HTML & CSS Masterclass
Bernardo Raposo
 
PDF
Xml schema
Prabhakaran V M
 
PPT
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
Introduction to BOOTSTRAP
Jeanie Arnoco
 
Jdbc ppt
Vikas Jagtap
 
Java Servlets
BG Java EE Course
 
PHP - Introduction to Object Oriented Programming with PHP
Vibrant Technologies & Computers
 
ASP.NET Web form
Md. Mahedee Hasan
 
RichControl in Asp.net
Bhumivaghasiya
 
Server Controls of ASP.Net
Hitesh Santani
 
Java Server Pages(jsp)
Manisha Keim
 
Event In JavaScript
ShahDhruv21
 
Introduction to asp.net
SHADAB ALI
 
SQLITE Android
Sourabh Sahu
 
Delegates and events in C#
Dr.Neeraj Kumar Pandey
 
ASP.NET - Life cycle of asp
priya Nithya
 
ASP.NET State management
Shivanand Arur
 
Architecture of .net framework
Then Murugeshwari
 
HTML & CSS Masterclass
Bernardo Raposo
 
Xml schema
Prabhakaran V M
 
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 

Viewers also liked (20)

PPTX
Seminar ppt on digital signature
jolly9293
 
PPTX
State Management in ASP.NET
Shyam Sir
 
PPT
Asp.net.
Naveen Sihag
 
PPTX
Ajax and ASP.NET AJAX
Julie Iskander
 
PPTX
Presentation - Electronic Data Interchange
Sharad Srivastava
 
PPTX
How to make more impact as an engineer
Peter Gfader
 
PPTX
Ajax control asp.net
Sireesh K
 
PPTX
Introduction to ASP.NET
Peter Gfader
 
PPT
Edi ppt
Sheetal Verma
 
PPTX
Asp.Net Control Architecture
Sundararajan Subramanian
 
PPT
Introduction To Asp.Net Ajax
Jeff Blankenburg
 
PPTX
Electronic data interchange
Abhishek Nayak
 
PPTX
Presentation on asp.net controls
Reshi Unen
 
PPT
Validation controls ppt
Iblesoft
 
PPTX
State management
Iblesoft
 
PPTX
Standard control in asp.net
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Ch3 server controls
Madhuri Kavade
 
PPTX
Validation controls in asp
Shishir Jain
 
PPTX
Electronic data interchange
Rohit Kumar
 
PPT
Intro To Asp Net And Web Forms
SAMIR BHOGAYTA
 
Seminar ppt on digital signature
jolly9293
 
State Management in ASP.NET
Shyam Sir
 
Asp.net.
Naveen Sihag
 
Ajax and ASP.NET AJAX
Julie Iskander
 
Presentation - Electronic Data Interchange
Sharad Srivastava
 
How to make more impact as an engineer
Peter Gfader
 
Ajax control asp.net
Sireesh K
 
Introduction to ASP.NET
Peter Gfader
 
Edi ppt
Sheetal Verma
 
Asp.Net Control Architecture
Sundararajan Subramanian
 
Introduction To Asp.Net Ajax
Jeff Blankenburg
 
Electronic data interchange
Abhishek Nayak
 
Presentation on asp.net controls
Reshi Unen
 
Validation controls ppt
Iblesoft
 
State management
Iblesoft
 
Ch3 server controls
Madhuri Kavade
 
Validation controls in asp
Shishir Jain
 
Electronic data interchange
Rohit Kumar
 
Intro To Asp Net And Web Forms
SAMIR BHOGAYTA
 
Ad

Similar to Controls in asp.net (20)

PPTX
Basic controls in asp
Sireesh K
 
PPTX
Visual studio Toolkits
Bino Mathew Varghese
 
PPTX
UNIT1.pptx Introduction to ASP.NET IN IMR COLLEGE JALGOAN
dnyandip40
 
PPT
ASP.NET UNIT 3.ppt
saravana131297
 
DOC
The most basic inline tag
April Anne Emmanuel
 
PPTX
Ajax control tool kit
Vidhi Patel
 
PPT
ASP.NET Session 9
Sisir Ghosh
 
PPTX
Web Server Controls VB Set 1
sunmitraeducation
 
PPTX
Chapter 6
application developer
 
PPTX
Controls
teach4uin
 
PPTX
UNIT 5 list controls.pptx
Divyak978237
 
PPTX
Basic controls of Visual Basic 6.0
Salim M
 
PPTX
Walther Ajax4
rsnarayanan
 
PPT
Session 3 Bai 3 ve winform
mrtom16071980
 
PPSX
Unit2
Abha Damani
 
PPT
ASP.NET 03 - Working With Web Server Controls
Randy Connolly
 
PPT
Chapter12 (1)
Rajalaxmi Pattanaik
 
PPSX
03 asp.net session04
Vivek Singh Chandel
 
PPTX
Ch 7 data binding
Madhuri Kavade
 
Basic controls in asp
Sireesh K
 
Visual studio Toolkits
Bino Mathew Varghese
 
UNIT1.pptx Introduction to ASP.NET IN IMR COLLEGE JALGOAN
dnyandip40
 
ASP.NET UNIT 3.ppt
saravana131297
 
The most basic inline tag
April Anne Emmanuel
 
Ajax control tool kit
Vidhi Patel
 
ASP.NET Session 9
Sisir Ghosh
 
Web Server Controls VB Set 1
sunmitraeducation
 
Controls
teach4uin
 
UNIT 5 list controls.pptx
Divyak978237
 
Basic controls of Visual Basic 6.0
Salim M
 
Walther Ajax4
rsnarayanan
 
Session 3 Bai 3 ve winform
mrtom16071980
 
ASP.NET 03 - Working With Web Server Controls
Randy Connolly
 
Chapter12 (1)
Rajalaxmi Pattanaik
 
03 asp.net session04
Vivek Singh Chandel
 
Ch 7 data binding
Madhuri Kavade
 
Ad

More from baabtra.com - No. 1 supplier of quality freshers (20)

PPTX
Agile methodology and scrum development
baabtra.com - No. 1 supplier of quality freshers
 
PDF
Acquiring new skills what you should know
baabtra.com - No. 1 supplier of quality freshers
 
PDF
Baabtra.com programming at school
baabtra.com - No. 1 supplier of quality freshers
 
PDF
99LMS for Enterprises - LMS that you will love
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 6 database normalisation
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 5 transactions and dcl statements
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 4 functions, views, indexing
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 3 stored procedures
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 
Agile methodology and scrum development
baabtra.com - No. 1 supplier of quality freshers
 
Acquiring new skills what you should know
baabtra.com - No. 1 supplier of quality freshers
 
Baabtra.com programming at school
baabtra.com - No. 1 supplier of quality freshers
 
99LMS for Enterprises - LMS that you will love
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 6 database normalisation
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 5 transactions and dcl statements
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 4 functions, views, indexing
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 

Recently uploaded (20)

PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
PDF
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 

Controls in asp.net

  • 2. Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra –Mentoring Partner Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt . Ltd
  • 3. Week Target Achieved 1 25W mp 22Wmp 2 3 Typing Speed
  • 4. Jobs Applied Week Company Designation Applied Date Current Status 1 2 3
  • 5. Controls in Asp.Net Shajeer pk [email protected] Shajeer Pk Shajeer pk Shajeer pk 9544559642
  • 6. Controls • Control is a inbuilt function • When we are using control that automatically generate html code • Controls used for designing
  • 7. • property- A property is a thing that describes the features of an object. A property is a piece of data contained within a class that has an exposed interface for reading/writing. Looking at this definition • Event- An action that an object does. When something happens, we say an event has happened
  • 9. Label • Ideally Label control is used to place a static, non clickable (can't fire onclick event) piece of text. properties • AccessKey, Attributes, BackColor, BorderColor, BorderStyle, BorderWidth, CssClass, Enabled, Font, EnableTheming, ForeColor, Height, IsEnabled, SkinID, Style, TabIndex, ToolTip, Width,text,id
  • 10. Text Box • The TextBox control is used to create a text box where the user can input text. • A text box's purpose is to allow the user to input text information to be used by the program. • AccessKey, Attributes, BackColor, BorderColor, BorderStyle, BorderWidth, CssClass, Enabled, Font, EnableTheming, ForeColor, Height, IsEnabled, SkinID, Style, TabIndex, ToolTip, Width,Id
  • 11. Button • The Button control is used to display a push button. The push button may be a submit button or a command button. By default, this control is a submit button. • A submit button does not have a command name and it posts the page back to the server when it is clicked. It is possible to write an event handler to control the actions performed when the submit button is clicked.
  • 12. Link button • The LinkButton control is used to create a hyperlink button. PostBackUrl • Gets or sets the URL of the page to post to from the current page when the LinkButton control is clicked.
  • 13. Hyper link • HyperLink will not PostBack page to the server. It will post a simple request to the server for the URL you set as href. The LinkButton works exactly as a normal Button but it looks like an HyperLink, so it will PostBack your page to the server allowing you to do your business operations. Another (obvious) difference is that the HyperLink doesn't have the OnClick event.
  • 14. List Box • The List Box control is used to create a single- or multi-selection drop-down list. • Each selectable item in a List Box control is defined by a ListItem element main property of list box collection – add items in list box
  • 15. Check box • The CheckBoxList control is used to create a multi-selection check box group. • Each selectable item in a CheckBoxList control is defined by a ListItem element important property checked- two values true or false
  • 16. DropDownList • The DropDownList control is used to create a drop-down list. • Each selectable item in a DropDownList control is defined by a ListItem element. Imported properties • SelectedIndex • Items • SelectedItem
  • 17. Radio button • The RadioButton control is used to display a radio button. • To select one option. One of the important properties Checked-two values true or false
  • 18. RadioButtonList • The RadioButtonList control is used to create a group of radio buttons. • Each selectable item in a RadioButtonList control is defined by a ListItem element The important properties DataTextField DataValueField
  • 19. Image • The Image control is used to display an image. the important properties The Important Properties DescriptionUrl-The location to a detailed description for the image ImageUrl-The URL of the image to display for the link ImageAlign-The URL of the image to display for the link
  • 20. Imagemap • The ASP.NET ImageMap control allows you to create an image that has individual regions that users can click, which are called hot spots. Each of these hot spots can be a separate hyperlink or postback event. • The imported property is -image url-to get image • hot spot-to add hot spot CircleHotspot RectangleHotspot PolygonHotspot
  • 22. BulletedList • The BulletedList control creates a list in bullet format. • Each item in a BulletedList control is defined by a ListItem element Imported properties • Items-to specifies items • Bullet style-Specifies the style of the bullet list
  • 23. HiddenField • It is to use for a hide control,its not display at runtime. Properties Only two property 1:text 2:visible
  • 24. Literal • The Literal Control is similar to the Label Control as they both are used to display static text on a web page. • Unlike Label control, there is no property like BackColor, ForeColor, BorderColor, BorderStyle, BorderWidth, Height etc. for Literal control. That makes it more powerful, you can even put a pure HTML contents into it. • This is a light waight control.
  • 25. Calendar • To add a calendar in a web page. • This is to display month and date a calendar formate. Property Selected Date
  • 26. AdRotater • AdRotator control to display advertisements in an ASP.NET Web site • The AdRotator control allows developers to place graphical advertisements on a Web Form and provides programmatic functionality that enables the development of custom logic to track advertisement clicks. Properties KeywordFilter-support
  • 27. File Upload • This property to help us to browse a file and upload Properties FileName:It is the path of the file; If we wants to add a file using file uploader we will get its path in file Upaload.fileName
  • 28. Wizard control • It is to use a deferent type of controls in deferent time. • It is a step by step formatting Main Property Display cancel-To display cancel button In This Control we are add how much step we want to add
  • 32. Grid View • The GridView and Details View controls are commonly used in a Master/Detail page. A Master/Detail page is a page that displays a list of items from a database along with the details of a selected item in the list
  • 33. Repeater • The Repeater control is used to display a repeated list of items that are bound to the control • Following are the major differences between repeater and gridview controls: 1- Repeater is a light weight control and gridview is a heavy control. 2- Repeater doesn’t provide any built-in support to format the data whereas the gridview control has a very good support to format, sort and align the data. 3- Repeater provides more customization than gridview. 4- It is difficult to display data with repeater than gridview.
  • 34. DataList • The DataList control is, like the Repeater control, used to display a repeated list of items that are bound to the control. However, the DataList control adds a table around the data items by default. • light weight control, and acts as a container of repeated data items. The templates in this control are used to define the data that it will contain.
  • 35. Details view • Details View help us to show data one record at a time
  • 36. Sql datasourse,accessdatasourse,Xmldatasourse • The following are asses to sql database
  • 42. Required validater • Required validater validate for entering compalsery Properties Control to validate:validate for wich control Text:wich text we want to validate
  • 43. Range validater • To validate one condition The following are the prpperties 1:Requared field Validater 2:Maximum value 3:minimum value
  • 44. Regular Expression validater 1:Requared field Validater 2:range validater 3:Regular expressin validater 5:validate summery
  • 46. Contact Us Emarald Mall (Big Bazar Building) Mavoor Road, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 NC Complex, Near Bus Stand Mukkam, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 Start up Village Eranakulam, Kerala, India. Email: [email protected]
  • 47. If this presentation helped you, please visit our page facebook.com/baabtra and like it. Thanks in advance. www.baabtra.com | www.massbaab.com |www.baabte.com