由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - 请问, ASP.NET 中, 2 个web form之间如何传参数?
相关主题
Summary: 2 个web form之间如何传参数?HELP customize context menu
SOAPEntity Framework Open Sourced
serialization problem.NET 入门系列(2)--Web Services,XML,SOAP
A Question about Session State in ASP.NET.NET 入门系列(3)--SOAP, WSDL, disco
Session ID in URL.Net remoting usage and performance.
Event trackingSoapExtensionReflector?
microsoft .net event请教高人!
觉得C#的valuetype和boxing真的是没有必要xmldocument and webservice question
相关话题的讨论汇总
话题: data话题: soap话题: events话题: web话题: form
进入DotNet版参与讨论
1 (共1页)
j****s
发帖数: 34
1
谢谢,除了使用全局变量,还有其他几种方法?
b*e
发帖数: 3845
2
you could store the object in Session.

【在 j****s 的大作中提到】
: 谢谢,除了使用全局变量,还有其他几种方法?
a**y
发帖数: 335
3
Session, as mentioned by bee.
Or store your data in Context(an Object collection), then
use Server.Transfer(string URL).

【在 j****s 的大作中提到】
: 谢谢,除了使用全局变量,还有其他几种方法?
a**y
发帖数: 335
4
Another way I can think of is to serilize your data and
SOAP it into message queue. Read the SOAP data by the
second page you want to transfer to. It's good for
unsynchorized situation.

【在 a**y 的大作中提到】
: Session, as mentioned by bee.
: Or store your data in Context(an Object collection), then
: use Server.Transfer(string URL).

m*******n
发帖数: 154
5
i remember that you can transfer data between windows forms using events, is
that possible for web forms?

【在 a**y 的大作中提到】
: Another way I can think of is to serilize your data and
: SOAP it into message queue. Read the SOAP data by the
: second page you want to transfer to. It's good for
: unsynchorized situation.

a**y
发帖数: 335
6
Can you post a sample?

【在 m*******n 的大作中提到】
: i remember that you can transfer data between windows forms using events, is
: that possible for web forms?

m*******n
发帖数: 154
7
http://www.devcity.net/net/article.aspx?alias=multipleforms3

is

【在 a**y 的大作中提到】
: Can you post a sample?
a**y
发帖数: 335
8
In this sample, it's just like one form raises an event and the second
receives it. Transfering date is simply done by: Me.lblData.Text =
f2.TB1.Text
So, actually, i think the data transfer has nothing to do with events.

events,

【在 m*******n 的大作中提到】
: http://www.devcity.net/net/article.aspx?alias=multipleforms3
:
: is

1 (共1页)
进入DotNet版参与讨论
相关主题
xmldocument and webservice questionSession ID in URL
新问题Event tracking
about soap?microsoft .net event
SOAP is out of date from web services?觉得C#的valuetype和boxing真的是没有必要
Summary: 2 个web form之间如何传参数?HELP customize context menu
SOAPEntity Framework Open Sourced
serialization problem.NET 入门系列(2)--Web Services,XML,SOAP
A Question about Session State in ASP.NET.NET 入门系列(3)--SOAP, WSDL, disco
相关话题的讨论汇总
话题: data话题: soap话题: events话题: web话题: form