惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
博客园_首页
W
WeLiveSecurity
S
Secure Thoughts
S
Security @ Cisco Blogs
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Hugging Face - Blog
Hugging Face - Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
H
Hacker News: Front Page
Project Zero
Project Zero
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
U
Unit 42
N
News and Events Feed by Topic
N
News and Events Feed by Topic
Hacker News - Newest:
Hacker News - Newest: "LLM"
Forbes - Security
Forbes - Security
T
Tor Project blog
I
Intezer
B
Blog
F
Full Disclosure
Security Archives - TechRepublic
Security Archives - TechRepublic
F
Fortinet All Blogs
Schneier on Security
Schneier on Security
T
Threat Research - Cisco Blogs
AI
AI
Google DeepMind News
Google DeepMind News
L
LINUX DO - 最新话题
Cloudbric
Cloudbric
L
Lohrmann on Cybersecurity
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
P
Privacy International News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
PCI Perspectives
PCI Perspectives
Y
Y Combinator Blog
Spread Privacy
Spread Privacy
Simon Willison's Weblog
Simon Willison's Weblog
罗磊的独立博客
Vercel News
Vercel News
A
Arctic Wolf
The Register - Security
The Register - Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
H
Heimdal Security Blog
Know Your Adversary
Know Your Adversary
P
Proofpoint News Feed
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed

博客园 - 小孔子

忙于生计,一直没时间上来 小孔子内容管理系统v2.1 Beta1 正式发布小孔子内容管理系统V2.1源码 以前写的一个邮件群发 小孔子内容管理系统V2.1测试 FckEditor采集远程图片插件完美版 发布小孔子图书管理系统(仿VS拖曳窗口) WinForm给ComboBox增加Value(转) V2.0发现的Bug 小孔子内容管理系统V2.0正式开源发布 小孔子内容管理系统V2.0测试 着手准备小孔子内容管理系统升级,请大家提建议 关于网站被黑 小孔子内容管理系统更新历史 2007.8.6 小孔子内容管理系统第一次更新 文章管理系统v2后台登陆的问题解决办法 感谢Calvin大哥提供测试空间 小孔子内容管理系统开源发布 向写过采集系统的高手求教
小孔子内容管理系统相关问题及回答区
小孔子 · 2007-06-15 · via 博客园 - 小孔子

问:为什么在Article,Soft,Photo下没有View.aspx文件
答:程序在编译之后,才能使用动态版式,编译之后首先把安装路径填写正确,然后编辑每个频道,保存之后程序会自动生成相应文件,注意路径不能写错.

问:为什么在后太添加或修改频道,在前台没有变化.
答:前台使用的模板中频道是在模板或自定义标签中写的,如果需要动态,可以调用js目录下的Channel.js

问:使用清爽模板时频道首页打开出错和生成页面出错的问题
答:在GetHtml.cs里找到ReplaceDissTab方法,里面有这样一句
doh.SqlCmd += "a.ChannelId=" + ParameterArray[0] + " and b.id=" + ParameterArray[0];
改成
doh.SqlCmd += " and a.ChannelId=" + ParameterArray[0] + " and b.id=" + ParameterArray[0];