本文介绍了如何在asp.net类文件中的Response.Redirect之后调用函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如,我在这里将此代码应用于类文件

,因为您看到我在调用response.redirect之后应用函数EmailData(电子邮件)

但是这个标准不起作用

所以请任何1可以告诉我,我怎么能在response.redirect();




SaveClientResponse(clientresponse,subuserid);

HttpContext.Current.Response.Redirect(https://www.google.co.in );

EmailData(电子邮件);

for example here i am applying this code in class file
here as you see that i am applying function EmailData(email) after calling response.redirect
But this criteria is not working
so please any 1 can tell me, how i am able to call my function i.e EmailData(email) after response.redirect();


SaveClientResponse(clientresponse, subuserid);
HttpContext.Current.Response.Redirect("https://www.google.co.in");
EmailData(email);

推荐答案


这篇关于如何在asp.net类文件中的Response.Redirect之后调用函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 07:05