سلام
من یه مشکل دیگه در ابطه با پرینت دارم من توی فایل asp یه عکس گذاشتم ولی وقتی که به فایل word می فرستم عکس رو نمی یاره کدم اینه :
من یه مشکل دیگه در ابطه با پرینت دارم من توی فایل asp یه عکس گذاشتم ولی وقتی که به فایل word می فرستم عکس رو نمی یاره کدم اینه :
کد:
<%
sExport = Request.QueryString("xport")
If sExport = "word" Then
Response.ContentType = "application/vnd.ms-word"
Response.AddHeader "Content-Disposition:", "attachment; filename=gavahi.doc"
'response.AddHeader "content-disposition", "inline; filename=gavahi.doc"
End If
%>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<TITLE></TITLE>
</HEAD>
<BODY>
<TABLE style="WIDTH: 410px; HEIGHT: 479px" height=479 cellSpacing=1 cellPadding=1 width=410 align=center border=1>
<TR>
<TD></TD>
<%path="daneshgah.jpg"%>
<TD align=right><IMG src=<%=path%>></IMG></TD></TR>
</TABLE>
<% If sExport = "" Then %> <A href="gavahi.asp?xport=word&path=<%=trim("daneshgah.jpg")%>" >Print</A><%end if%>
</BODY>
</HTML>