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

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

博客园 - Toney

[转]IT从业人员必看的10个论坛 国内.NET论坛源代码搜集 Ajax学习网址收集 Crystal Report Download URL and SN 学习计划 清辅音与浊辅音的区别 ASP.NET中实现URL重写 建立职场B计划 世界五百强面试题目及应答评点10 各路由器的默认密码列表 .Text引用第三方组(控)件明细^_^ Debug和Release的区别 Visual Studio 2005 Express October 2004 CTP完整版本的下载 从 SQL Server 2005 中处理 XML ASP.NET 中的正则表达式 递归遍历XML生成树 数据库应用:无法更新到数据库 如何构建积木式Web应用(引自微软CSDN ) Configuring IIS: Mapping .* to the aspnet_isapi.dll
Asp.Net Form事件处理过程??
Toney · 2005-09-09 · via 博客园 - Toney

 今日编码当中遇到一个问题:在PageLoad首次加载页面时动态生成的TextBox控件,在其他事件中想将其值存入数据库,可一到事件当中这些控件就没了。从网上搜查了一翻,发现将动态生成控件的代码放在Page_Init()事件不当中,也不加(!Page.IsPostBack)条件。就能得到这些动态生成的控件的值!
    但还有一个问题没搞明白,为什么在响应Save事件时,页面首先又初始化了一次Page_Init()事件,可其值还能保存呢?

    Web页面的处理过程:
       Page_Init();
       Page_OnLoad();
       Page_DataBind();
       Page_PreReder();
       Page_UnLoad();

???????????????