谢谢!
现在又有问题了!
<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>
编译错误
说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。
编译器错误信息: CS1502: 与“System.Convert.ToString(object)”最匹配的重载方法具有一些无效参数
源错误:
|
行 2: <FONT face="宋体"><IMG id="Image1" height="88" width="88" name="image2" runat="server"> 行 3: <asp:label id="strstate" runat="server" Font-Size="X-Small" Height="88px" Width="184px"></asp:label><BR> 行 4: <INPUT id="fileUp" onpropertychange="<%#ImagePath()%>" type="file" size="19" runat="server"> 行 5: <asp:button id="btnUpFile" runat="server" Height="22px" Width="48px" Text="上传"></asp:button> 行 6: <script language="C#">
|
我查了一下网站,一个人说在“<%# %>”中间不能用void的函数。应该不会吧。
[此贴子已经被作者于2006-5-6 13:41:54编辑过]