0% found this document useful (0 votes)
54 views

Image Control

This document demonstrates how to create a basic image control in ASP.NET. It includes a dropdown list to select an image, a link button to trigger changing the image, and an image control. When the page loads, it sets the initial image. When the link button is clicked, it gets the selected image from the dropdown and sets it as the source for the image control.

Uploaded by

Ezhil Pandian
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views

Image Control

This document demonstrates how to create a basic image control in ASP.NET. It includes a dropdown list to select an image, a link button to trigger changing the image, and an image control. When the page loads, it sets the initial image. When the link button is clicked, it gets the selected image from the dropdown and sets it as the source for the image control.

Uploaded by

Ezhil Pandian
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

<%@ Page Language=VB Debug=true %> <script runat=server> Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs) If Not IsPostBack

Then imgToView.AlternateText = "Image 1" imgToView.ImageUrl = "http://www.java2s.com/style/download.png" End If End Sub Sub SubmitBtn_Click(Sender As Object, E As EventArgs) imgToView.AlternateText = ddlImages.SelectedItem.Text imgToView.ImageUrl = ddlImages.SelectedItem.Value End Sub </SCRIPT> <HTML> <HEAD> <TITLE>Creating a Basic Image Control</TITLE> </HEAD> <form runat="server"> <BR><BR> Select an image to display:<BR> <asp:dropdownlist id="ddlImages" runat=server > <asp:listitem text="Image 1" value="http://www.java2s.com/style/dow nload.png"/> <asp:listitem text="Image 2" value="http://www.java2s.com/style/log o.png"/> <asp:listitem text="Image 3" value="http://www.java2s.com/style/dow nload.png"/> </asp:dropdownlist> <BR> <asp:linkbutton id="lnkbutOK" text="View Image" onclick="SubmitBtn_Click" runat="server" /> <BR><BR> <asp:image id="imgToView" runat="server" /> </Form> </BODY> </HTML>

You might also like