Facebook external login using oauth returns null email

Facebook external login using oauth returns null email
Need to install Facebook SDK from NuGet packages. In StartUp File app.UseFacebookAuthentication(new FacebookAuthenticationOptions { AppId = "XXXXXXXXXX", AppSecret = "XXXXXXXXXX", Scope...

Twitter external login using oauth returns null email

Twitter external login using oauth returns null email
For getting twitter user email using oauth external login we need to getting the Twitter support to allow the permission on our app. Please refer this link : Get user’s email address from twitter OAuth API in .Net applications...

Using StreamReader To Read HTML File/TextFile

Using StreamReader To Read HTML File/TextFile
Here I will explain how to read text or html file using StreamReaderIn previous articles I explained write a html file using StreamWriter,now I will explain how to read text or html file using StreamReader. we need to write the following...

Using StreamWriter To Write HTML File

Using StreamWriter To Write HTML File
Here, I will explain how to add textbox text into HTML file using StreamWriter.First,we need to write the following code in aspx page.Default.aspx <div>         <table border="1">          ...

Create Cookie In C#

Create Cookie In C#
Here simple code for creating cookie and value show on button click..!! using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page {  ...

3 Tier Architecture Example In Asp.Net With C#

3 Tier Architecture Example In Asp.Net With C#
Here I will how to create or implement 3-tier architecture for our project in asp.net  Basically 3-Tier architecture contains 3 layers 1.    Property Layer  2.    Business Logic Layer(BLL)  3.    Data...