Search:

Type: Posts; User: vikas_jk

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    5,666

    Re: Just to be sure, get remote IP address

    This should help


    private string GetUserIP()
    {
    string ipList = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

    if (!string.IsNullOrEmpty(ipList))
    {
    ...
  2. Re: how to learn C# for the first time

    Hello You can start from MS website as others have suggested.


    You can also browse MVC articles from basic to advanced

    Login and Registration in ASP.NET MVC

    Connect to database in C# using...
  3. Re: Redirect HTTP to HTTPS in IIS 10 / Windows 2016

    You can use URL rewrite in IIS and use below code in web config


    <rewrite>
    <rules>
    <rule name="http to https" stopProcessing="true">
    <match url="(.*)" />
    ...
Results 1 to 3 of 4



Click Here to Expand Forum to Full Width