账号通
    

账号  

密码  

7653

查看

13

回复
主题:[分享]小改动让企业空间首页及主模板支持调用联系方式 [收藏主题] 转到:  
科汛官方 当前离线

47268

主题

145

广播

405

粉丝
添加关注
级别:管理员

用户积分:101604 分
登录次数:7935 次
注册时间:2006/12/7
最后登录:2023/12/14
科汛官方 发表于:2008/10/30 15:20:00   | 只看该作者 查看该作者主题 楼主 
科汛在线商城系统(NET)

在商业区看到有用户需要这个功能,考虑到部分免费版本用户也可能用得着待发布修改方法

 

打开Space/Space.asp,增加替换函数

 

第一个地方,70行左右:

   Template=Replace(Template,"{$BlogMain}","<div id=""blogmain"">" & GetMain & "</div><div id=""kspage"" style=""display:none"" align=""right""></div>")
   Template=ReplaceEnterpriseInfo(Template)
   Response.Write Template
  End Sub

 

修改的第二个地方,差不多在文件尾:

 

Function GetEnterpriseShortintro()
    On Error Resume Next
   GetEnterpriseShortintro=KS.Gottopic(KS.LoseHtml(KS.Htmlcode(Conn.execute("select Intro From KS_EnterPrise where UserName='" & UserName & "'")(0))),580) &"&nbsp;&nbsp;<a href=""intro.asp?username=" & Username & """>&nbsp;详细>>></a>"
  End Function
 
  Function ReplaceEnterpriseInfo(ByVal Content)
     On Error Resume Next
    Dim RS:Set RS=Server.CreateObject("ADODB.RECORDSET")
    RS.Open "Select top 1 * From KS_EnterPrise Where UserName='" & UserName & "'",conn,1,1
    IF RS.Eof Then
     RS.Close:Set RS=Nothing
  ReplaceEnterpriseInfo=""
    End If
    Content=Replace(Content,"{$GetCompanyName}",RS("CompanyName"))
    if isnull(RS("BusinessLicense")) then
    Content=Replace(Content,"{$GetBusinessLicense}","---")
    else
    Content=Replace(Content,"{$GetBusinessLicense}",RS("BusinessLicense"))
    end if
    if isnull(RS("profession")) then
    Content=Replace(Content,"{$GetProfession}","---")
    else
    Content=Replace(Content,"{$GetProfession}",RS("profession"))
    end if
    if isnull(RS("Companyscale")) then
    Content=Replace(Content,"{$GetCompanyScale}","---")
    else
    Content=Replace(Content,"{$GetCompanyScale}",RS("Companyscale"))
    end if
    if isnull(rs("province")) then
    Content=Replace(Content,"{$GetProvince}","---")
    else
    Content=Replace(Content,"{$GetProvince}",RS("province"))
    end if
    if isnull(rs("city")) then
    Content=Replace(Content,"{$GetCity}","---")
    else
    Content=Replace(Content,"{$GetCity}",RS("city"))
    end if
    if isnull(RS("Contactman")) then
    Content=Replace(Content,"{$GetContactMan}","---")
    else
    Content=Replace(Content,"{$GetContactMan}",RS("Contactman"))
    end if
    if isnull(RS("address")) then
    Content=Replace(Content,"{$GetAddress}","---")
    else
    Content=Replace(Content,"{$GetAddress}",RS("address"))
    end if
    if isnull(RS("ZipCode")) Then
    Content=Replace(Content,"{$GetZipCode}","---")
    Else
    Content=Replace(Content,"{$GetZipCode}",RS("zipcode"))
    End If
       If Isnull(RS("telphone")) Then
    Content=Replace(Content,"{$GetTelphone}","---")
    Else
    Content=Replace(Content,"{$GetTelphone}",RS("telphone"))
    End If
   
    If IsNull(rs("fax")) then
    Content=Replace(Content,"{$GetFax}","---")
    else
    Content=Replace(Content,"{$GetFax}",RS("fax"))
    end if
    if isnull(rs("weburl")) then
    Content=Replace(content,"{$GetWebUrl}","---")
    else
    Content=Replace(Content,"{$GetWebUrl}",RS("weburl"))
    end if
    if isnull(rs("bankaccount")) then
    Content=Replace(Content,"{$GetBankAccount}","---")
    else
    Content=Replace(Content,"{$GetBankAccount}",RS("bankaccount"))
    end if
    if isnull(RS("accountnumber")) then
    Content=Replace(Content,"{$GetAccountNumber}","---")
    else
    Content=Replace(Content,"{$GetAccountNumber}",RS("accountnumber"))
    end if
    ReplaceEnterpriseInfo=Content
 End Function
End Class

 

 

以上的红部分为添加的代码.好了这样你的企业空间首页就支持调用企业联系方式了,如电话,传真等

支持的标签如下:

 

 

  • {$GetCompanyName}
  • --公司名称
  • {$GetBusinessLicense}
  • ---营业执照
  • {$GetProfession}
  • ---公司行业
  • {$GetLegalPeople}
  • ---企业法人
  • {$GetCompanyScale}
  • ---公司规模
  • {$GetRegisteredCapital}
  • ---注册资金
  • {$GetProvince}
  • ---所在省份
  • {$GetCity}
  • ---所在城市
  • {$GetContactMan}
  • ---联 系 人
  • {$GetAddress}
  • ---公司地址
  • {$GetZipCode}
  • ---邮政编码
  • {$GetTelphone}
  • ---联系电话
  • {$GetFax}
  • ---传真号码
  • {$GetWebUrl}
  • ---公司网址
  • {$GetBankAccount}
  • ---开户银行
  • {$GetAccountNumber}
  • ---银行账号

     

     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    ecmlzy 当前离线

    150

    主题

    0

    广播

    0

    粉丝
    添加关注
    级别:一年级

    用户积分:1102 分
    登录次数:81 次
    注册时间:2008/8/26
    最后登录:2011/12/24
    ecmlzy 发表于:2009/2/22 11:12:00   | 只看该作者 查看该作者主题 沙发 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    anjan1983 当前离线

    126

    主题

    0

    广播

    0

    粉丝
    添加关注
    级别:一年级

    用户积分:1491 分
    登录次数:68 次
    注册时间:2008/5/12
    最后登录:2009/5/1
    anjan1983 发表于:2008/11/4 10:37:00   | 只看该作者 查看该作者主题 藤椅 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    天下无语 当前离线

    1259

    主题

    11

    广播

    1

    粉丝
    添加关注
    级别:九年级

    用户积分:9743 分
    登录次数:1540 次
    注册时间:2007/4/1
    最后登录:2024/1/8
    天下无语 发表于:2008/11/4 9:29:00   | 只看该作者 查看该作者主题 板凳 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    狂逛网盟 当前离线

    117

    主题

    0

    广播

    0

    粉丝
    添加关注
    级别:一年级

    用户积分:998 分
    登录次数:74 次
    注册时间:2007/7/26
    最后登录:2013/4/22
    狂逛网盟 发表于:2008/11/2 20:29:00   | 只看该作者 查看该作者主题 报纸 
    做在线知识付费 选科汛云开店

    好久没来,不错,支持中........

     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    veryp 当前离线

    3738

    主题

    328

    广播

    29

    粉丝
    添加关注
    级别:大三

    用户积分:14990 分
    登录次数:1155 次
    注册时间:2006/5/29
    最后登录:2023/3/28
    veryp 发表于:2008/11/1 16:35:00   | 只看该作者 查看该作者主题 地板 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    yiwang 当前离线

    11

    主题

    0

    广播

    0

    粉丝
    添加关注
    级别:学前班

    用户积分:262 分
    登录次数:1 次
    注册时间:2008/11/1
    最后登录:2008/11/1
    yiwang 发表于:2008/11/1 12:33:00   | 只看该作者 查看该作者主题 7楼 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    一生有你 当前离线

    10439

    主题

    0

    广播

    18

    粉丝
    添加关注
    级别:版主

    用户积分:72521 分
    登录次数:1969 次
    注册时间:2006/7/1
    最后登录:2021/8/25
    一生有你 发表于:2008/10/30 18:14:00   | 只看该作者 查看该作者主题 8楼 
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    zhitaige 当前离线

    1196

    主题

    0

    广播

    0

    粉丝
    添加关注
    级别:八年级

    用户积分:7830 分
    登录次数:267 次
    注册时间:2006/11/8
    最后登录:2015/9/4
    zhitaige 发表于:2008/10/30 16:51:00   | 只看该作者 查看该作者主题 9楼 
    科汛在线网校系统

    希望在5.5中可以实现这个功能

     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    iamcay 当前离线

    879

    主题

    11

    广播

    1

    粉丝
    添加关注
    级别:七年级

    用户积分:5479 分
    登录次数:207 次
    注册时间:2006/8/30
    最后登录:2016/11/20
    iamcay 发表于:2008/10/30 16:48:00   | 只看该作者 查看该作者主题 10楼 
    科汛智能建站系统
    暂时用不到,不过感谢提供解决方案
     
      支持(0) | 反对(0) 回到顶部顶端 回到底部底部
    <上一主题 | 下一主题 >
    Powered By KesionCMS Version X1
    厦门科汛软件有限公司 © 2006-2016 页面执行0.20313秒 powered by KesionCMS 9.0