在没有会话的情况下

在没有会话的情况下

本文介绍了在没有会话的情况下将值传递到下一页的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将k的值传递到下一页如何在没有会话的情况下执行此操作,cookies n querystrings



这是一个错误合同,我有与其他应用程序一起使用该服务。



I want to pass the value of k to the next page how can i do it without session,cookies n querystrings

This is a fault contract and i have to consume the service with other application.

public string GetMessage(int i,int j)
        {
            string k;


            try
            {
              k = (i / j).ToString();


            }
            catch (Exception exp)
            {
                MyFaultException theFault = new MyFaultException();
                theFault.Reason = "Some Error " + exp.Message.ToString();
                //// throw new FaultException<MyFaultException>(theFault);
                throw new FaultException<MyFaultException>(theFault, new FaultReason(theFault.Reason));


                //throw new FaultException(exp.Message);  // For throwing General Exception
            }
            return k;
        }

推荐答案



这篇关于在没有会话的情况下将值传递到下一页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 12:35