如果路径没问题
你直接浏览cha.asp 然后把生成前、后的源代码帖上来
<!--#include file="Conn.asp"-->
<%if User.UserName="1234567" then
response.write("document.write('内容一')")
else
call t
end if%>
<%sub t()%>
<a name="ireply"></a>
<div id="ad_adqIReplyUp"><!--我来回答上方的横幅--></div>
<div class="t3 bcg bgg" style="margin-top:5px;">我来回答:{oask_title}</div>
<div class="b3 bcg">
<form method="post" name="hd" id="hd" action="{oask_weburl}answer.asp" target="_hideframe" onSubmit="return check_replyform(this);">
<textarea name="co" cols="82" rows="10" id="co" style="width:100%"></textarea>
心情图片:<span id="emot"></span><script language="javascript">ShowEmot(1);</script><br>
回答即可得1分,回答被采纳则获得悬赏分以及奖励10分。 <a href="{oask_weburl}help.asp#n4" target="_blank">积分规则</a>
<input type="hidden" name="qid" value="{oask_qid}"><br>
回答字数在 {oask_MaxReplyLengh} 字以内<br>
参考资料: <input name="ck" type="text" size="60" value=""><br>
如果您的回答是从其他地方引用,请表明出处网址。<br><br>
<input name="ok" type="submit" id="ok" value="提交回答" class="btn">
</form>
</div>
<%end sub%>
------------------------------
查的所有代码
UserName=12345678时
浏览显示:document.write('内容一')
不等于时显示 :
我来回答:{oask_title}
心情图片:
回答即可得1分,回答被采纳则获得悬赏分以及奖励10分。 积分规则
回答字数在 {oask_MaxReplyLengh} 字以内
参考资料:
如果您的回答是从其他地方引用,请表明出处网址。
-------------------------------
用<script src="cha.asp"></script>插入到静态页中(即使是空白HTML页)
UserName=12345678时
浏览显示: 内容一
不等于时 :什么都没有
[QUOTE]<!--#include file="Conn.asp"-->
<%if User.UserName="1234567" then
response.write("document.write('内容一')")
else
call t
end if%>
<%sub t()%>
document.write('<a name="ireply"></a>');
document.write('<div id="ad_adqIReplyUp"><!--我来回答上方的横幅--></div>');
document.write('<div class="t3 bcg bgg" style="margin-top:5px;">我来回答:{oask_title}</div>');
document.write('<div class="b3 bcg">');
document.write('<form method="post" name="hd" id="hd" action="{oask_weburl}answer.asp" target="_hideframe" onSubmit="return check_replyform(this);">');
document.write('<textarea name="co" cols="82" rows="10" id="co" style="width:100%"></textarea>');
document.write('心情图片:<span id="emot"></span><script language="javascript">ShowEmot(1);</script><br>');
document.write('回答即可得1分,回答被采纳则获得悬赏分以及奖励10分。 <a href="{oask_weburl}help.asp#n4" target="_blank">积分规则</a>');
document.write('<input type="hidden" name="qid" value="{oask_qid}"><br>');
document.write('回答字数在 {oask_MaxReplyLengh} 字以内<br>');
document.write('参考资料: <input name="ck" type="text" size="60" value=""><br>');
document.write('如果您的回答是从其他地方引用,请表明出处网址。<br><br>');
document.write('<input name="ok" type="submit" id="ok" value="提交回答" class="btn">');
document.write('</form>');
document.write('</div>');
<%end sub%>[/QUOTE]