None
0 Points
4 Posts
Sep 10, 2008 02:07 PM|nehaljain|LINK
I had the same error. when i added one line in global.asax. I gave fully qualified name for the class and it was solved. [:)]
So instead of using
RemotingConfiguration.Configure(AppDomain.CurrentDomain.BaseDirectory + "remoteclient.config", true);
I used the fully qualified name as shown below.
System.Runtime.Remoting.
None
0 Points
4 Posts
Re: The name xxx Does Not Exist in the Current Context
Sep 10, 2008 02:07 PM|nehaljain|LINK
I had the same error. when i added one line in global.asax. I gave fully qualified name for the class and it was solved. [:)]
So instead of using
RemotingConfiguration.Configure(AppDomain.CurrentDomain.BaseDirectory + "remoteclient.config", true);
I used the fully qualified name as shown below.
System.Runtime.Remoting.
RemotingConfiguration.Configure(AppDomain.CurrentDomain.BaseDirectory + "remoteclient.config", true);