图像对象无法在后面的代码中访问

图像对象无法在后面的代码中访问

本文介绍了图像对象无法在后面的代码中访问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



< asp:ScriptManager ID =ScriptManager1runat =server>



< asp :UpdatePanel ID =UpdatePanel1runat =server>

< contenttemplate>

< asp:Image ID =Image1Height =200pxWidth =200pxrunat =server/>

< asp:计时器ID =Timer1runat =serverInterval =1000ontick =Timer1_Tick>














<asp:ScriptManager ID="ScriptManager1" runat="server">

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<contenttemplate>
<asp:Image ID="Image1" Height="200px" Width="200px"runat="server" />
<asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick">








i我正在使用更新面板来移动图片幻灯片,但是当我使用image1.ImageUrl然后

错误即将到来image1在当前不存在上下文为什么我不知道

plz help


i am using Update panel to displat image slideshow but when ever i am using image1.ImageUrl then
error is comming image1 does not exist in current context why i dont konw
plz help

推荐答案



这篇关于图像对象无法在后面的代码中访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 18:27