Problems running .aspx and aspx.vb in DW (pages work correctly in MS Visual Studio 2013)

I'm very confused and surprised I can't seem to find any postings on this problem. It's very peculiar so stay with me: I've designed a VB .Net webpage called Regstration_Form.aspx in Visual Studio 2013 (which is tied to a second form, Registration_Form.aspx.vb which contains the active visual basic script that processes data entered on the .aspx page). I've tested this page in Visual Studio 2013, AND IT WORKS AS IT IS SUPPOSED TO...the webpage looks clean, accepts the data entered on the page, and the buttons execute the visual basic script from the .aspx.vb page flawlessly. 
NOW, I've designed an html website in Dreamweaver CS6 with multiple (passive) .html pages, and I want to integrate the .aspx/.aspx.vb pages with the others in Dreamweaver now that I have them working in VS 2013.  After all, Dreamweaver let's me (and proclaims to) save files as aspx files and support their functionality.  It seems to me I should be able to simply move them in to the Dreamweaver folder for the website (along with the config file in the root), but...here's what happens:
(1) when I test run the aspx page from Dreamweaver, the browser webpage shows the html code in black-and-white (code view). It does not display the actual webpage.
(2) (even weirder) If I change the .aspx page extension to .html, the browser (correctly) shows the webpage I've designed. BUT, now when I click the "submit" button to perform the active tasks (again, which work in VS 2013), the webpage changes from the correct webpage shown only moments earlier to now SHOWING THE ASPX.VB CODE.
Put another way, dreamweaver displays html code if the page is .aspx, and displays .aspx.vb code if the .aspx page is changed to .html. Either way, my aspx pages are not being executed correctly by Dreamweaver, despite working perfectly well in VS 2013 and I cannot figure out why.
I have enabled IIS on my computer.
I have placed the config file in the root.
I have enabled .NET functionality in Dreamweaver's "disabled features" folder.
I'm stumped...does anyone have any ideas?
Thanks!

I don't work with ASPX sites.  But PHP sites need a local testing server defined in DW.
Nancy O.

Similar Messages

  • Getting a error while running creating a sample page on sharepoint 2013 and visual studio 2013

    hi,
       When i trying to create a sample web service for create page dynamically to sharepoint 2013 using visualstudio 2013 getting a error message while consume  the web service browser itself. so i have tried to change the target platform but
    to 32 but its not possible but only "Any CPu" available on the list
    Visual Studio :2013
    Sharepoint 2013 
    Error msg :
    Microsoft SharePoint is not supported in 32-bit process. Please verify that you are running in a 64-bit executable.
    at Microsoft.SharePoint.Utilities.SPUtility.CheckFrameworkAndProcess()
    at Microsoft.SharePoint.Administration.SPConfigurationDatabase.get_RegistryConnectionString()
    at Microsoft.SharePoint.Administration.SPConfigurationDatabase.get_Local()
    at Microsoft.SharePoint.Administration.SPFarm.FindLocal(SPFarm& farm, Boolean& isJoined)
    at Microsoft.SharePoint.Administration.SPFarm.get_Local()
    at Microsoft.SharePoint.SPSite..ctor(String requestUrl)
    code :  
    <%@ WebService Language="C#" Class="sharepoint_cust_service" %>
    using System;
    using System.Web;
    using System.Web.Services;
    using System.Web.Services.Protocols;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Publishing;
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
    // [System.Web.Script.Services.ScriptService]
    public class sharepoint_cust_service  : System.Web.Services.WebService {
        [WebMethod]
        public string HelloWorld() {
            return "Hello World";
        [WebMethod]
        public void Export_To_Sharepoint()
            SPSite site = null;
            SPWeb web = null;
            site = new SPSite("http://sites/pages/");
            web = site.OpenWeb();
            PublishingWeb publishingWeb = PublishingWeb.GetPublishingWeb(web);
            SPContentTypeId contentType = new SPContentTypeId("NewContentTypeID");
            PageLayout[] layouts = publishingWeb.GetAvailablePageLayouts(contentType);
            PageLayout pageLayout = layouts[0];
            string pageName = Server.MapPath("/newpage.aspx");
            PublishingPage newPage = publishingWeb.GetPublishingPages().Add(pageName, pageLayout);
            newPage.Update();
            newPage.ListItem.File.CheckIn("created");
            newPage.ListItem.File.Publish("created");
            web.Dispose();
            site.RootWeb.Dispose();
            site.Dispose();
    Software developer

    goto propeties of your project and click on build tab and select 64X or any cpu platformtarget as it should work .

  • Windows 7 with SharePoint 2013 Foundation and Visual Studio 2013

    Hi,
    I am begginer with Sharepoint 2013 Foundation. 
    My company installed Sharepoint 2013 Foundation on a virtual Server. I installed
    Visual Studio 2013 on my local computer. Also i created a developer site.
    Based on http://msdn.microsoft.com/en-us/library/office/jj220047(v=office.15).aspx#RDOverview I installed Office
    Developer Tools for Visual Studio 2013 on my local computer. 
    I am trying to remotely develop apps
    with Visual Studio 2013. In the option What SharePoint site do you want to use for debugging your App? i put the url
    of developer site.
    First of all, i had to choose if the apps will be SharePoint-hosted or Provider-hosted apps. Based on http://msdn.microsoft.com/en-us/library/office/fp142379(v=office.15).aspx and http://msdn.microsoft.com/en-us/library/office/fp142381(v=office.15).aspx,
    i decided to followed SharePoint-hosted because is the only type that applies to SharePoint 2013 Foundation.
    I followed the steps of http://msdn.microsoft.com/en-us/library/office/fp142379(v=office.15).aspx, which is the quide for How to:Create a basic SharePoint-hosted app. In Step 10 for deploy my app i get the following error: 
    Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details.
    What is the problem?
    Also, the visual studio need to be installed on the server where sharepoint was installed?
    Moreover, do I need app catalog for testing and deploy apps?
    thanks, Aphrodite

    Hi,
    According to your post, my understanding is that you have an issue about creating app.
    Per my knowledge, the issue is caused that you don’t configure the app catalog URLs from the central administration.
    It means that we should create an App site catalog site collection to hold our Apps.
    More reference:
    http://www.sharepoint-journey.com/app-development-in-sharepoint.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Visual Studio 2013 problem during develop basic SharePoint-hosted app

    Hi,
    i am begginer in developing Sharepoint apps using Visual studio 2013.
    I followed this instructions http://msdn.microsoft.com/en-us/library/fp142379.aspx for creating a basic SharePoint-hosted app.  
    When i tried to build my application (Step 10 in create and deploy your first Sharepoint-hosted app) i got the following error: 
    Error occurred in deployment step 'Install app for SharePoint': Sideloading of apps is not enabled on this site.
    What is the problem?
    thanks, Aphrodite

    http://blogs.msdn.com/b/josrod/archive/2013/02/04/quot-sideloading-of-apps-is-not-enabled-on-this-site-quot.aspx
    In order to publish a SharePoint hosted app to a site collection the site must be based on the developer site template or have the “Developer” Feature enabled on it.  The “Developer” Feature is marked as hidden in its definition so you must use PowerShell
    to enable the Feature. 
    Enable-SPFeature e374875e-06b6-11e0-b0fa-57f5dfd72085 –url
    http://sp.contoso.com
    Also check below:
    http://blogs.msdn.com/b/officeapps/archive/2013/12/10/enable-app-sideloading-in-your-non-developer-site-collection.aspx
    If this helped you resolve your issue, please mark it Answered

  • SQL Server Express and Visual Studio 2013

    In February I installed Visual Studio 2013 Professional. Looking in the Control Panel at all my installed programs, I see that I have a bunch of SQL server-related programs loaded, from the 2013 install and also from installs of previous Visual Studio versions.
    I've never done a thing with SQL server express, and am completely clueless about using it. I've already wanted to take a crack at it but it always seemed too daunting, so I backed off. It seems, however, that over the years the integration of SQL Server Express
    with Visual Studio is getting more and more seamless. Here is a list of all the SQL Server-related programs on my computer, with the ones installed automatically from the Visual Studio 2013 install bolded so they'll stand out. What I'm wondering is if I have
    everything I need to use SQL Server Express with Visual Studio 2013:
    Microsoft SQL Server 2005                                                  
    Microsoft Corporation   11/4/2013
    Microsoft SQL Server 2005 Mobile [ENU] De...                     
    Microsoft Corporation   4/29/2007
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Se1Ver 2008 R2 Management ...                   
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Transact-SQL ...                    
    Microsoft Corporation   12/7/2011
    Microsoft SQL Server 2012 Command Line ...                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Data-Tier App Fr...              
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Express LocalDB                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Management Ob...               
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Native Client                        
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Transact-SQL Co...                    
    Microsoft Corporation   9/21/2012
    Microsoft SQL Server 2012 Transact-SQL Ser...            
    Microsoft  Corporation 2/10/2014
    Microsoft SQL Server 2012 T-SQL Language ...             
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server Compact 3.5 Design T...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Compact 3.5 SP2 ENU                       
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Compact 4.0SP1 ENU                        
    Microsoft Corporation   9/21/2012
     Microsoft SQL Se1Ver Data Tools - enu (11.1....                 
    Microsoft Corporation   5/19/2013
     Microsoft SQL Server Data Tools - enu (12.0....            
    Microsoft Corporation  2/10/2014
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...              
    Microsoft Corporation   5/19/2013
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...         
    Microsoft  Corporation 2/10/2014
     Microsoft SQL Server Database Publishing ...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Database Publishing ...                      
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Native Client                                      
    Microsoft Corporation   4/1/2011
    Microsoft SQL Server Setup Support Files (E...                    
    Microsoft Corporation   4/1/2011
    Microsoft SQL Se1Ver System CLR Types                             
    Microsoft Corporation   1217/2011
    Microsoft SQL Server VSS Writer                                         
    Microsoft Corporation   4/1/2011

    Hello,
    Please read the following resources:
    http://msdn.microsoft.com/en-us/library/ms233763.aspx
    http://stackoverflow.com/questions/20333518/how-to-create-a-database-in-ms-visual-studio-2013
    http://msdn.microsoft.com/en-us/vstudio/bb643825.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • When trying to open Pages 4.0.1 I get a message stating "Pages cannot be opened because of a problem, check with the developer to make sure Pages works with this version of Mac OS X. You may need to reinstall the application." Using OS X 10.6.8

    When trying to open Pages 4.0.1 I get a message stating "Pages cannot be opened because of a problem, check with the developer to make sure Pages works with this version of Mac OS X. You may need to reinstall the application. Be sure to install any available updates for the application and Mac OS X."
    I've run the software update several times. Pages is located in my iWork '09 folder in Applications. Using OS X 10.6.8

    Delete and reinstall it.
    (104030)

  • SQL Server Data Tools – Business Intelligence for Visual Studio 2013 (SSDT BI) and SSIS on SQL Server 2012

    This great blog entry titled
    SQL Server Data Tools - Business Intelligence for Visual Studio 2013 (SSDT BI), link below, highlights the lack of support for SSIS projects using SQL Server 2012, VS 2013 and SSDT BI for VS 2013. I see there is a new version
    on SSDT BI for VS 2013 (12.0.2430.0, File Name: SSDTBI_x86_ENU.exe, Date Published: 10/27/2014) link below.
    Does this version support SSIS projects using SQL Server 2012 using VS 2013 and SSDT BI for VS 2013?
    http://blogs.msdn.com/b/analysisservices/archive/2014/04/02/sql-server-data-tools-business-intelligence-for-visual-studio-2013-ssdt-bi.aspx
    http://www.microsoft.com/en-us/download/details.aspx?id=42313

    Hi cjrinpdx,
    According to the picture, it seems that we can use SSIS 2012 support is not included in SSDT-BI for VS 2013. And based on the previous versions, SSIS always different from SSRS, SSAS.
    SSDT-BI for Visual Studio 2012 supports versions of SQL Server as follows:
    SSAS project can target SQL 2012 or lower
    SSRS project can target SQL 2012 or lower
    SSIS project can target only SQL 2012
    The following blog is for your reference:
    http://blogs.technet.com/b/dataplatforminsider/archive/2013/11/13/microsoft-sql-server-data-tools-update.aspx
    Since I have no environment to test this at this moment,
    I recommend you that submit the feedback at
    https://connect.microsoft.com/SQLServer/. 
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Visual Studio 2013 Missing Design, Source and Split buttons

    Operating system Windows 8.1 preview.
    When editing a HTML file in Visual Studio 2013 Preview or Visual Studio Express 2013 for Web, the Design, Source and Split tabs are missing from the bottom left of the editor even though the "Enable HTML Designer" box is checked in the Options
    drop down. 
    This behavior occurs in the Web install of Visual Studio 2013 Preview and both the Web install and .iso install for Visual Studio Express 2013 Preview for Web. 

    Hi Jack:
    Thank you for your attention to this matter.
    Yes the problem also occurs on a different Windows 8 machine running Visual Studio Express 2013 Preview for Web.
    If I restart the VS IDE and reset the VS with the default settings, and then create a new sample, it DOES NOT WORK as expected. The Design, Source and Split tabs still are missing from the bottom left of the editor even though the "Enable
    HTML Designer" box is checked in the Options drop down.
    Here is an image, with buttons missing, of the lower left corner of the Visual Studio Express 2013 Preview for Web IDE.
    Here is an image, with the buttons as expected, of the lower left corner of the Visual Studio Express 2012 for Web IDE
    To try to repro the issue simply load a HTML file into the IDE of Visual Studio 2013 Professional Preview IDE or  Visual Studio Express 2013 Preview for Web IDE and see if the Design, Source and Split tabs are missing from the bottom left of the editor
    even though the "Enable HTML Designer" box is checked in the Options drop down.
    Robert Wishlaw

  • Which Visual C++ redistributable package needed for Visual Studio 2013 Update 3 and 4?

    Which redistributable package should be installed at the client side for binaries built with either Visual C++ 2013 Update 3 or 4? 
    From the Download Center, "Visual C++ Redistributable Packages for Visual Studio 2013",
    http://www.microsoft.com/en-us/download/details.aspx?id=40784 I downloaded "vcredist_x86.exe" and "vcredist_x64.exe", which have version number 12.0.21005.1
    My system, which has installed VS2013 Update 3, also has "vcredist_x86.exe" and "vcredist_x64.exe", at "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\redist\1033", but these having a higher version number: 12.0.30501.0
    A colleague of mine has installed  VS2013 Update 4, but has the same redistributable files as my VS2013 Update 3 installation: version 12.0.30501.0.
    Is it correct to conclude that
    the VS2013 redistributables at Microsoft's Download Center (12.0.21005.1) are outdated?
    VS2013 Update 3 and Update 4 based applications may share the very same redistributable package (12.0.30501.0)?

    @Niels,
    Maybe we cannot say it is not uploaded. We can see the package is named as
    Visual C++ Redistributable Packages for Visual Studio 2013 Update 4
    So the package may only specific for one version and does not mean it should have Visual C++ Redistributable Packages
    for Visual Studio 2013 Update 2
    If you want to report anything you can consider use Connect:
    https://connect.microsoft.com/
    However I don't think we need to report this case on Connect.
    For your last question, since the version 30501 seems to be the update version of 21005, I think you will not have them together. Anyway, for this particular VC++ runtime, I would recommend you keep it update to date.
    https://support.microsoft.com/kb/2019667?wa=wsignin1.0
    Then you may get the latest features. And if you have any specific reason that you need a specific version, I think we can handle it case by case. For example, if you want to deploy you C++ application and you need a runtime version.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Visual Studio 2013 problem setting localhost alias in IIS Express

    I'm trying to define an alias to localhost in development ambient in Visual Studio 2013.
    When I used previous versions of Visual Studio, I used the Visual Studio Development Server to debug and the only thing I needed to do was to change my hosts file adding this entry:
    127.0.0.1 localhost
    127.0.0.1 localhostalias
    I'm having problems to do this with VS2013. I've browsed all over the internet and I've tried the following things, but I'd like someone of you to tell me what am I doing wrong. I've obviously already changed the hosts file...
    In the web project Properties -> Web in the section Servers where IIS Express is selected as default, I tried changing http://localhost:53944 to http://localhostalias:53944 but an error is showed saying: "Unable to create the virtual directory. Cannot
    create the Web site 'http://localhostalias:53944'. You must specify "localhost" for the server name".
    I also tried changing the applicationhost.config which is located in <<Documents>>\IISExpress\config to 
    <site name="<<Site name>>" id="2">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:*" />
    </bindings>
    </site>
    And when I opened the project it was changed to
    <site name="<<Site name>>" id="2">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:*" />
    </bindings>
    </site>
    <site name="<<Site name>>(1)" id="3">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="<<Site Path>>" />
    </application>
    <bindings>
    <binding protocol="http" bindingInformation="*:53944:localhost" />
    </bindings>
    </site>
    Can someone help me?
    Thanks in advance,
    Camilo

    Hello Camilo,
    This forum supports  "setup and deployment of .NET Framework.", if there is something about the installation of .NET Framework, you can post it here. I read your post and I think you should post it under
    IIS forum instead.
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Having issues viewing interactive parameters and group tree in Visual Studio 2013 design view.

    Hey Guys,
    I'm a web developer (front end and back end, kind of a one man army sort of deal) and my current employer wishes to use crystal reports to display the results of the online survey apps/tools I have been working on for the last few months. However, I have been having trouble getting the reports to render in browser, and a lot of the ui components of the browser based report viewer (the interactive parameters and group tree) will not render properly in the design view of visual studio (ive attached a screen cap of what I'm talking about) or in the browser itself.
    I am new to crystal reports and its community and if I am leaving out any critical details or have posted in the incorrect section please inform me and I will make changes as necessary.
    Additional info:
    Visual studio version: 2013 professional (trial)
    Plugin version (exe file name): CRforVS_13_0_9.exe (I also installed the 64 bit run-time from this)
    Server and OS versions: IIS 7.5 on Microsoft Windows Server 2008 R2
    Any help you guys could provide would be greatly appreciated.
    Cheers,
    -Mike

    Hi Mike
    First thing you want to do is uninstall CRVS SP 9 and install CRVS SP 10. SP 10 is the first SP to support VS 2013.
    Once that is done, let us know if that helped any.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out!!!

    Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out ASAP

    Hello nitinrathod29,
    There are some possible fixes for this issue.
    Please check the following thread:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/47bc6990-00f2-4d85-b3f8-9de03c637f43/visual-studio-2013-update-2rc-stucks-on-creating-system-restore?forum=vssetup
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/81478f51-37bb-4dbb-bd0c-beade1fd50ab/visual-studio-2012-professional-installation-getting-stuck-creating-a-system-restore-point?forum=vssetup
    So here are them:
    1. Check if you have any software which may prevent the installer from running. For example, Windows Defender or any other software which may restrict your permissions.
    2. Just start the computer.
    3. Run the setup as admin.
    4. Check your UAC permissions.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem with activation of Visual Studio 2013 Ultimate - DreamSpark

    Hello
    I'm facing strange problem while trying to activate Visual Studio 2013 Ultimate. I first install it on my Windows 8.1 machine and used it without activation, today as trial expired I've tried to enter my DreamSpark product key for it. The problem is when
    I click on 'Apply' button nothing happens. No reaction completely
    I have screenshot, but cannot attach it
    I've tried to reinstall and repair VS 2013 installation. Same problem
    Could you help me please fix this issue

    "as trial expired" Does mean the trial period had ended prior to your attempt to register your VS?
    If it is not expired, have you tried Help->Register Product? What happens if you try that?
    If the above does not help, you should contact Dream Spark support for instructions:
    https://www.dreamspark.com/Support/Default.aspx

  • Display issue typing and using visual studio 2013

    Hi
    So i installed visual studio 2013 with update 4 last night and now i am having an issue with it. When i start up my project it doesn't show anything until i minimize and un-minimize the screen. Also when I to try type within the code there is no pointer
    shown and nothing is shown the screen i am typing or changing any text. Also with clicking on the explorer it doesn't highlight what i select and also when i right click within the explorer the properties disappear when i move over them.
    I have pictures that i have uploaded to look at;
    http://imgur.com/a/7WZWW
    Thanks

    Hello popp09,
    The issue sounds more like a problem related to your Graphic driver. Could you please make sure your "graphic driver" is update to date?You should also make sure you've applied all Windows Updates in your OS.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unit Testing with Microsoft Sharepoint Emulators and Fakes with Visual Studio 2013

    Hi All,
    I have created Test Project and now creating Test cases for Sharepoint. I found a link on MSDN which suggests using Fakes framework but it supports VS2012 and I am using Visual Studio 2013.
    So how can I use it with VS2013 or is there any other way with which I can implement the Test cases with VS2013.
    Please suggest.
    Thanks in advance.
    Himanshu Nigam

    Hi HimanshuNigam,
    According to your descrition, my understanding is that you want to use Fakes framework to create test case for SharePoint project in Visual Studio 2013.
    If you want to test using Fakes Framework, you can use the codeplex extension to achieve it. It supports Visual Studio 2013.
    Here is a detailed article for your reference:
    Better Unit Testing with Microsoft Fakes
    About how to include the Nuget package, you can use the package with the link below:
    NuGet Package Manager for Visual Studio 2013
    Installing NuGet
    If you still have question about this issue, I suggest you can create a post in Visual Studio, more experts will help you and you can get more detailed information from there:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Best Regards
    Zhengyu Guo
    TechNet Community Support

Maybe you are looking for

  • Help with httprequests and responses

    it is my first time writing a servlet, but i need one to work with a project i'm working on. I have a class that will do all the methods on the server side of the project, but my problem now which i need to resolve, is how to get my client side app (

  • Timesheet on web

    Hi, Our users are using CAT2 on both NWBC and Webgui to input time sheet records However, they sometimes encounter run-time error when save timesheet on web. On the other hand, there is no problem on NWBC. We asked SAP OSS and they replied CAT2 on we

  • Video Stabilizer effect not working

    I am currently trying out the trial version of Elements 10 prior to purchasing. One of the effects I have been trying to use is the Stabilzer. However when I apply it to a video clip and try to watch it in the preview window or full screen it does no

  • "Region Mismatch.  This merchant account is not valid in this region." PayPal Here

    Hi Guys I use the paypal here system via card-reader and 4s with ios 7.0.2.  I've been trying to process a customers payment since friday but i keep gettin error message saying "Region Mismatch.This merchant account is not valid in this region". I ha

  • Getting Timestamp from Multiple Devices

    I am using LV 8.0 with the Compact DAQ Chassis and NI 6221 (for the encoder input – because the C DAQ system currently does not have any modules for quadrature counter input). I have modules NI 9205 and 9237. I will be doing multiple measurements at