我在网站上添加博客。如果我将通过查询字符串的帮助点击标题链接工作,标题,desc,img的页面将显示。但在此特定时间循环执行两次。 这是我的代码请帮助。
from contextlib import closing
def func(inplace):
with closing(fileinput.input(sys.argv[1], inplace=inplace)) as finput:
for line in finput:
[..]
if condition:
return True
[..]
答案 0 :(得分:1)
使用Page.IsPostBack属性来验证页面是第一次呈现还是正在加载以响应回发。
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not Me.Page.IsPostBack Then
If Not Request.QueryString("id") Is Nothing Then sbloadBlog()
End If
End Sub