FoosunCMS-添加文字广告的解决方案

来自站长百科
跳转至: 导航、​ 搜索

导航:返回上一页

FoosunCMS-添加文字广告的解决方案


在Admin/Ads/文件夹下找到ads_add.asp文件

打开,找到如下源码

    <td width="12%" height="20" align="right" 
class="hback">广告类型</td>
    <td width="38%" align="left" 
class="hback"><select name="AdType" 
id="AdType" style="width:200" onChange="javascript:ChooseType(this.value);">
      <option value="0" <%if Clng(temp_adType)=0 
Then Response.write "selected"%>>普通显示广告</option>
      <option value="1" <%if Clng(temp_adType)=1 
Then Response.write "selected"%>>弹出新窗口</option>
      <option value="2" <%if Clng(temp_adType)=2 
Then Response.write "selected"%>>打开新窗口</option>
      <option value="3" <%if Clng(temp_adType)=3 
Then Response.write "selected"%>>渐隐消失</option>
      <option value="4" <%if Clng(temp_adType)=4 
Then Response.write "selected"%>>网页对话框</option>
      <option value="5" <%if Clng(temp_adType)=5 
Then Response.write "selected"%>>透明对话框</option>
      <option value="6" <%if Clng(temp_adType)=6 
Then Response.write "selected"%>>满屏浮动</option>
      <option value="7" <%if Clng(temp_adType)=7 
Then Response.write "selected"%>>左下底端</option>
      <option value="8" <%if Clng(temp_adType)=8 
Then Response.write "selected"%>>右下底端</option>
      <option value="9" <%if Clng(temp_adType)=9 
Then Response.write "selected"%>>对联广告</option>
      <option value="10" <%if Clng(temp_adType)=10 
Then Response.write "selected"%>>循环广告</option>      
    </select></td>

替换为:

    <td width="12%" height="20" align="right" class="hback">广告类型</td>
    <td width="38%" align="left" class="hback"><select 
name="AdType" id="AdType" style="width:200" 
onChange="javascript:ChooseType(this.value);">
      <option value="0" <%if Clng(temp_adType)=0 
Then Response.write "selected"%>>普通显示广告</option>
      <option value="1" <%if Clng(temp_adType)=1 
Then Response.write "selected"%>>弹出新窗口</option>
      <option value="2" <%if Clng(temp_adType)=2 
Then Response.write "selected"%>>打开新窗口</option>
      <option value="3" <%if Clng(temp_adType)=3 
Then Response.write "selected"%>>渐隐消失</option>
      <option value="4" <%if Clng(temp_adType)=4 
Then Response.write "selected"%>>网页对话框</option>
      <option value="5" <%if Clng(temp_adType)=5 
Then Response.write "selected"%>>透明对话框</option>
<option value="6" <%if Clng(temp_adType)=6 
Then Response.write "selected"%>>满屏浮动</option>
      <option value="7" <%if Clng(temp_adType)=7 
Then Response.write "selected"%>>左下底端</option>
      <option value="8" <%if Clng(temp_adType)=8 
Then Response.write "selected"%>>右下底端</option>
      <option value="9" <%if Clng(temp_adType)=9 
Then Response.write "selected"%>>对联广告</option>
      <option value="10" <%if Clng(temp_adType)=10 
Then Response.write "selected"%>>循环广告</option>      
   <option value="11" <%if Clng(temp_adType)=11 
Then Response.write "selected"%>>文字广告</option>
    </select></td>

其实说白了就是在里面加一段

<option value="11" <%if Clng(temp_adType)=11 Then Response.write "selected"%>>文字广告</option>



参考来源[ ]