我需要知道如何从下拉列表中显示数据。例如:
DropDownList
选择图像
小汽车
船
垂钓
用户首先看到的是select图像下拉列表。用户将看到从select图像下拉列表中显示的一些随机图片。
如果用户按下列表中的汽车图片,则新图片将显示等等。
每一张图片都将显示在html表格中,类似于我所绘制的图片(如下所示)。假设每个列表都有三张图片,那么这三张图片都将显示在表中(如下图所示)。
这是我到目前为止编写的代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
我有一个名为myimage.aspx的页面,它创建随机验证码图像,
<form id="form1" runat="server">
<div>
<%--<img src="MyImagePage.aspx">--%> //using normal page...this is working fine
<ucImage:ucMyImage ID="myimage" runat="server" /> //using usercon
我试图创建一台老虎机,我有3个空图片框和一个图像列表,其中包含一堆不同的图片,我使用随机数生成器将图像从图像列表中放入picturebox。
现在,我如何比较看这三张随机图片是否匹配?
picturebox1.image == picturebox2.image;
//doesnt work because names aren't loaded to image property
picturebox1.imagelocation == picture2.imagelocation
//doesn't work because all images come from t