this is the code
<a onclick='function()'> <img src="images/img.jpg" /></a>
and when i press him change the page and send a information like a string
答案 0 :(得分:2)
您可以考虑使用普通链接并将您想要传递的数据设置为查询字符串参数:
<a href='YourOtherPage.aspx?key=value'>
<img src="images/img.jpg" />
</a>
然后,您只需通过其他页面Request
事件中的Page_Load
对象访问您的值:
// Retrieve your value (this will match the name of your key and contain the value)
var key = Request["key"];
答案 1 :(得分:0)
您可以更改将在单击中调用的函数中的文档位置,并将查询字符串中的内容发送到另一页:
<a onclick='theClick()'> <img src="images/img.jpg" /></a>
function theClick()
{
document.location = "anotherpage.aspx?data=thedatevalue";
}