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
in
MVC,
oauth
- on 20:48
- No comments
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
in
asp.net,
c#
- on 08:44
- No comments
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
in
asp.net,
c#
- on 08:40
- No comments
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#
in
asp.net,
c#,
Cookie
- on 08:37
- No comments
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#
in
asp.net,
c#
- on 08:32
- No comments

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...