0

ドットネット4.0を使用したasp.netWebページがあり、ユーザーが自分のサイトにログインして支払いページに移動してデータを設定したいときに、asp.netログインコントロールを使用してログインページを作成し、支払いボタンを押して戻ってきます私のサイトにリダイレクトすると、私のWebページは自動的に彼をログアウトします。自動的にログアウトしないようにするにはどうすればよいですか?

//my code for payment button:  
PaymentGatewayImplService bpService = new PaymentGatewayImplService();
result = bpService.bpPayRequest(terminalId, UserName,
PassWord,
basketID*1000+tryForPayment,
Int64.Parse(GetPrice()),
PayDateTextBox,
PayTimeTextBox, "",
"www.sample.com/inpay.aspx",
0);

//my code in inpay.aspx load form:
RefIdLabel.Text = Request.Params["RefId"];  
ResCodeLabel.Text = Request.Params["ResCode"];  
SaleOrderIdLabel.Text = Request.Params["SaleOrderId"];  
SaleReferenceIdLabel.Text = Request.Params["SaleReferenceId"];

inpay.aspxで私のサイトは自動的にログアウトします.....

4

1 に答える 1

1

フォーム認証をサイトに実装する必要があるように思えます。簡単な例を次に示します: http://msdn.microsoft.com/en-us/library/xdt4thhy%28v=vs.100%29.aspx

于 2013-01-15T22:04:51.157 に答える