events

Upload: oscarin696

Post on 01-Mar-2016

1 views

Category:

Documents


0 download

DESCRIPTION

Clase asp

TRANSCRIPT

EVENTS

EVENTS.XML

Application Starting

Connecting to Network

Network Unavailable...Retrying

Application Shutdown

Connection Timeout Exceeded

DEFAULT.SKIN

Treeview.aspx

Sub MyTreeView_SelectedNodeChanged(sender As Object, e As EventArgs)

Dim path As String = MyTreeView.SelectedNode.DataPath

MyDetailsSource.XPath = path

MyDataList.DataSource = MyDetailsSource

MyDataList.DataBind()

End Sub TreeView Event Viewer Event Details Date: Time: Source: Message: Type:

ESCENARIOS

EmptyDataTemplate, NullDisplayText, DefaultValue, and ConvertEmptyStringToNull

View contacts that begin with:

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

There are no records to display

ESCENARIO2

Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs)

OrderDetailsDataSource.SelectParameters("OrderID").DefaultValue = FormView1.DataItem("OrderID")

End Sub

Nested Master Details

Orders and Order Details OrderID:
OrderDate:
ShipCity:
ShipCountry:

ESCENARIO3

Protected Sub DataList1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataListItemEventArgs)

Dim s As SqlDataSource = e.Item.FindControl("OrderDetailsDataSource")

s.SelectParameters("OrderID").DefaultValue = e.Item.DataItem("OrderID")

End Sub

Nested Master Details List

Orders and Order Details OrderID:
OrderDate:
ShipCity:
ShipCountry:



PAGINACION

PagerTemplate

Last >>
Last >>

MASTER PAGE

SITE.MASTERPAGE

Daffodil
Rose
Dahlia
Hydrangea
Daisy
Welcome to my florist website! We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide. Let us handle all you gardening needs!





DEFAULT.aspx

ROSE.aspx

With sunshine, water, and careful tending, roses will bloom several times in a season.

SITE2.MASTER

Daffodil
Rose
Dahlia
Hydrangea
Daisy
Welcome to my florist website! We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide. Let us handle all you gardening needs!





DEFAULT.ASPX

ROSE.aspx

With sunshine, water, and careful tending, roses will bloom several times in a season.

SITE3.MASTER

Public Property FooterText() As String Get return Footer.Text

End Get Set(ByVal value As String)

Footer.Text = value

End Set End Property

Daffodil
Rose
Dahlia
Hydrangea
Daisy
Welcome to my florist website! We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide. Let us handle all you gardening needs!





ROSECODE.aspx

Sub Page_Load()

Master.FooterText = "This is a custom footer"

Dim ad As AdRotator = Master.FindControl("MyAdRotator")

If (Not ad Is Nothing)

ad.BorderColor = System.Drawing.Color.Purple

ad.BorderWidth = 10

End If End Sub

With sunshine, water, and careful tending, roses will bloom several times in a season.

ROSE.aspx

With sunshine, water, and careful tending, roses will bloom several times in a season.

PETUNIA.aspx

Petunias are available in many colorful varieties, and add punch to your garden.

SITE4.MASTER

Home
Perrenials

Daffodil
Rose
Dahlia
Hydrangea
Daisy
Annuals Gerranium
Impatiens
Petunia
Welcome to my florist website! We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide. Let us handle all you gardening needs!

SECCTIONPERRENIALS.MASTER

Perrenials

SECCTIONANNUAL.MASTER

Annuals

HOME.aspx