[求助]刚学习asp.net,什么也不懂,刚写的控件就是不行,哪错?
我刚学asp.net(C#)几天,看看我的程序。<INPUT id="fileUp" onpropertychange="<%ImagePath()%>" type="file" size="19" runat="server">
<IMG id="Image1" height="88" width="88" name="image2" runat="server">
<script language=C#>
public void ImagePath()
{
Image1.Src=fileUp.Value;
}
</script>
大家看看哪错,是不是红色字体的地方错,在ASPX文件里调用C#写的函数是不是这样呀?