ドットネット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で私のサイトは自動的にログアウトします.....