本文介绍了page.ispostback问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个例程,我只想在变量设置为Y时执行。

例程在屏幕上获取一些信息然后重定向到新的

页。

如何将变量传递给page_load

事件的Page.IsPostBack例程?


这是我正在尝试做什么/

sub page_load

if page.ispostback then

dim value as string = CType(Session(") ; quesiton),string)

if value =" Y"然后

''执行我的例程

else

''做我的数据网格数据绑定等等

结束如果

结束如果


感谢

解决方案




QueryString ?曲奇饼?会话变量?


-Darrel




上的Page.IsPostBack例程页面事件?



QueryString?曲奇饼?会话变量?

-Darrel



I have a routine that i only want to execute if a variable is set to Y. The
routine is getting some information on the screen then redirecting to a new
page.
How can i passed a variable to the Page.IsPostBack routine on the page_load
event?

this is what I''m trying to do/
sub page_load
if page.ispostback then
dim value as string = CType(Session("quesiton"), string)
if value = "Y" then
''execute my routine
else
''do my datagrid databinding, etc.
end if
end if

thanks

解决方案



QueryString? Cookie? Session Variable?

-Darrel





page_load



QueryString? Cookie? Session Variable?

-Darrel



这篇关于page.ispostback问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 13:58