为什么ImageButton控件没有显示正确的坐标值?
<asp:Label ID="Label1" runat="server" Text="Click Image Button"></asp:Label><br />
<asp:Label ID="Label2" runat="server" Text="See The Co-ordinates"></asp:Label>
<br />
<asp:ImageButton ID="ImageButton1" runat="server" Height="100" Width="100" ImageUrl="~/DSC06427.jpg" onclick="ImageButton1_Click" />
在这两个标签添加在图像上方,但图像 y 坐标的最大值仍然是 100 相反,它应该是 100+
<asp:Label ID="Label1" runat="server" Text="Click Image Button"></asp:Label><br />
<asp:Label ID="Label2" runat="server" Text="See The Co-ordinates"></asp:Label>
<br />
<asp:ImageButton ID="ImageButton1" runat="server" Height="100" Width="100" ImageUrl="~/DSC06427.jpg" onclick="ImageButton1_Click" />
In this two labels are added above the image but still the maximum value of image y co-ordinate is 100 Instead It should be 100+
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,坐标是相对于图像角而不是根据页面获取的,这就是发生这种情况的原因。
Actually the co-ordinates are taken with respect to image corner not according to page thats why this occurs.