我从谷歌下载了管理员模板,我使用FileUpload
控制来加载图片。
模板使用插件在运行时加载图像,用户在加载时可以看到图像
但是,当用户从任意位置选择image
时,image
控件中都会显示img
,但我无法在我的aspx
页面上看到{i} { {1}}在选择上分配图像
下面是图片说明:
我在jquery
页面上的 div
aspx
当我按<div id="divImages" runat="server" type="image" class="fileupload-preview fileupload-exists thumbnail" style="max-width: 200px; max-height: 150px; line-height: 20px;" >
</div>
至Shift+Ctrl+i
时,我将inspect elements
作为
div
在<div id="ContentPlaceHolder1_divImages" type="image" class="fileupload-preview fileupload-exists thumbnail" style="max-width: 200px; max-height: 150px; line-height: 10px;">
<img src="here is image source......" style="max-height: 150px;"> // I need this image control id at code behind in asp.net
</div>
中,我认为对此有用的是
jquery
我需要这个reader.onload = function(e) {
preview.html('<img src="' + e.target.result + '" ' + (preview.css('max-height') != 'none' ? 'style="max-height: ' + preview.css('max-height') + ';"' : '') + ' />')
element.addClass('fileupload-exists').removeClass('fileupload-new')
}
图像控件才能在服务器端访问,这样我就需要对这个控件进行一些检查......
我在runtime
中很弱,所以我需要你的帮助。
如果有人不明白这一点,请随时问我,我在这里听你说。
我正在使用asp.net c#
提前致谢