.NET Mobile images control

.NET Mobile Images control. Explain with an example

Various mobile devices have different displaying capabilities. The Image control enables developers to specify different types of images fir different devices.

Example: Devices which display GIF, some devices which display BMP or WBMP images.
<%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

<%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

<Mobile:Form runat="server">
<Mobile:Image runat="server">
<DeviceSpecific>
        <Choice ImageURL="image1.gif" />
        <Choice ImageURL="image1.bmp" />
        <Choice ImageURL="image1.wbmp" />
</DeviceSpecific>
</Mobile:Image>
</Mobile:Form>
.NET Mobile utility controls
.NET Mobile utility controls - NET mobile has a variety of utility complex controls:...
Pros and cons of LINQ (Language-Integrated Query)
Pros and cons of LINQ - Pros of LINQ: Supports type safety, Supports abstraction and hence allows developers to extend features such as multi threading....
Can we use LINQ with databases other than SQL Server?
LINQ with databases other than SQL Server - LINQ supports Objects, XML, SQL, Datasets and entities. One can use LINQ with other databases through LINQ to Objects or LINQ to Datasets.....
Post your comment