Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
202 Points
266 Posts
Nov 24, 2011 01:47 PM|LINK
I have asp.net with facebook integrated application external. When i post a message it is asking FB login window. All are working fine. Now the FB login window show as maximized screeen . I want to show it as a small one.
-------------------------------------------------------------------------
protected void ImgButtonWish_Click(object sender, ImageClickEventArgs e)
{
Session["wishmessage"] = txtWish.Text; RedirectToFacebookAuthorization(); // Response.Redirect(https://www.facebook.com/dialog/oauth?client_id=281602828531030&redirect_uri=index.aspx);
}
--------------------------------------------------------------------------------
protected void Page_Load(object sender, EventArgs e)
if (!IsPostBack) {
if (Request["code"] != null)
string authorizationCode = Request["code"];
if (Session["journymessage"] != null)
muji85a
Member
202 Points
266 Posts
asp.net facebook graph tool kit for getting small login window
Nov 24, 2011 01:47 PM|LINK
I have asp.net with facebook integrated application external. When i post a message it is asking FB login window. All are working fine. Now the FB login window show as maximized screeen . I want to show it as a small one.
-------------------------------------------------------------------------
protected void ImgButtonWish_Click(object sender, ImageClickEventArgs e)
{
Session["wishmessage"] = txtWish.Text; RedirectToFacebookAuthorization(); // Response.Redirect(https://www.facebook.com/dialog/oauth?client_id=281602828531030&redirect_uri=index.aspx);
}
--------------------------------------------------------------------------------
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
if (Request["code"] != null)
{
string authorizationCode = Request["code"];
if (Session["journymessage"] != null)
}
}
}