本文介绍了如何在Page_Load()事件中初始化页面?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们,


在Page_Load()事件中,我想初始化这个网页,其值是从数据库中检索到的。




例如,对于元素< INPUT type =" text" ID = QUOT;&的firstName QUOT; ... />,我希望

使其值等于John。


因此,在C#中,我做了:

this.firstName = dbrow [" firstName"]。ToString();

,它不起作用。


什么我该怎么办?任何示例代码?谢谢。

Hi, friends,

In Page_Load() events, I want to initialize this web page with values I
retrieved from DB.

For example, for the element <INPUT type="text" id="firstName" .../>, I want
to make its value equal to "John".

So, in C#, I did:
this.firstName = dbrow["firstName"].ToString();
and, it did not work.

What should I do? Any sample code? Thanks.

推荐答案









这篇关于如何在Page_Load()事件中初始化页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 03:17