Hello guys,
i m facing a strang issue
i have a webmethod and call a class method like this
[WebMethod]
public static String SelectDetails(String[] Outword)
{
FakeInfo P = new FakeInfo();
P.FakeInfoDetails();
}
and this is fakeinfo class
public class FakeInfo
{
String NameGenrate()
{
var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var stringChars = new char[8];
var random = new Random();
for (int i = 0; i < stringChars.Length; i++)
{
stringChars[i] = chars[random.Next(chars.Length)];
}
var finalString = new String(stringChars);
return finalString;
}
public void FakeInfoDetails()
{
PInformation pax = new PInformation();
ISearchFlightDetails IFDetails = (ISearchFlightDetails)HttpContext.Current.Session[&q ...
Go to the complete details ...