locked
Browser Link Visual Studio 2013 RRS feed

  • Question

  • I am new to VS 2013 and recently got introduced to a feature called Browser Link. I think it's an awesome feature provided by microsoft.

    I am not able to get the connections. Following steps I did

    • Created a new Empty MVC project
    • Created a controller Home and Action Index
    • Created a view Index.cshtml.
    • Solution was in debug mode.
    • Ran the solution.

    No connections made.

    Following is the web.config file

    <?xml version="1.0" encoding="utf-8"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=301880 --> <configuration> <appSettings> <add key="webpages:Version" value="3.0.0.0" /> <add key="webpages:Enabled" value="false" /> <add key="ClientValidationEnabled" value="true" /> <add key="UnobtrusiveJavaScriptEnabled" value="true" /> </appSettings> <system.web> <compilation debug="true" targetFramework="4.5.1" /> <httpRuntime targetFramework="4.5.1" /> </system.web> </configuration>

    I have gone through the process Microsoft Explained on it's site

    Please help

    Saturday, November 7, 2015 5:52 AM

Answers

  • Open the Browser Link Dashboard and examine any messages that it displays. If any of the prerequisites is not met, you should see a yellow warning mark in the Dashboard along with an explanation of the problem.
    Saturday, November 7, 2015 12:25 PM