An example of the Request URL: http:\\localhost\ChatWindow.aspx?username=sly_chandan

My webmethod is listed below:

[WebMethod(EnableSession = true)]
public static List<PrivateMessage> GetMessages()
{
    List<PrivateMessage> getMsgsList = (List<PrivateMessage>)HttpContext.Current.Application["PrivateMessages"];
    var msgs = getMsgsList.Where(x => x.fromUsername == HttpContext.Current.Session["Username"].ToString() && x.toUsername == HttpContext.Current.Request.QueryString["username"]);
    return msgs.ToList();
}

I cannot seem to retrieve the querystring parameter.

link|improve this question

maybe you mean || instead of && – onof Sep 15 '11 at 7:56
feedback

1 Answer

up vote 0 down vote accepted

To get the querystring, you should simply be able to change your method to look like this:

[WebMethod(EnableSession = true)]
public static List<PrivateMessage> GetMessages(string username)
{
    List<PrivateMessage> getMsgsList = (List<PrivateMessage>)HttpContext.Current.Application["PrivateMessages"];
    var msgs = getMsgsList.Where(x => x.fromUsername == HttpContext.Current.Session["Username"].ToString() && x.toUsername == username;
    return msgs.ToList();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.