When user opens the publish URL
\\ourLanServer\appdir\someApp\publish.htm
and then clicks the Run button on the Microsoft-generated HTML page, an error is displayed that the DevExpress NavBar v10.1 must be copied to the GAC.
The app was published to a LAN server as FullTrust OneClick-enabled.
The CopyLocal property set to True for the DevExpress NavBar v10.1.
How to get beyond this error?
You should include DevExpress assemblies to the list of published assemblies as it is explained in the ClickOnce deployment of an application with Developer Express .NET Windows Forms components
Related
I have developed an ASP.NET Web Forms Application in Visual Studio 2017(CE). It's the project that I've developed for my college, as an objective to run it as an Intranet Application so that it could run on a IIS on a PC and people can access it over the Intranet. I've tried using the Web Deploy method, generated a Folder and addressed the IIS to the Published files of Visual Studio. But I don't get it to work, and I feel it's not the right way.
I've tried some research but haven't been able to figure out the right context. Can anyone please recommend me the right place of instructions? Or instruct here itself?
Go to Solution Explorer and select the project then right-click the project
Click the Publish menu item then left panel to publish screen will be open like below screen
Select the publish option as IIS, FTP, etc then click to publish button
The publish window will be open then select publish method as File System and type the Target location as http://localhost/Appname and click Next button.
Now, you can see the setting and file publishing options whatever you want to configure the options and click the Save button
Now you can find the application was published URL http://localhost/App in the output window
My C# .NET console application opens my web browser when Debugging, as well as the console itself. How can I set the project such that only the console opens, and not the browser?
The issue is being caused by the project type GUID of the project file still being set to a web application, even though the project output is set to "Exe".
The .csproj file (not the .csproj.user file) will need to be manually edited to change the project type GUID to {36761217-1D8E-4C0F-9A00-B86D9D12B086} so that Visual studio will recognise the project as a C# application and not a web project, and will therefore not attempt to open a browser when the project is debugged.
I am working with asp.net webforms project. I have published my project on iis . I checked project link on server with browser . pages are looking without styles. On iis manager, I have put my project on application pool with these properties :
32 bit application :true
Integrated
And i have checked if css files is exist.
What the missing things that i have to do.
Thank you.
I am working on windows server 2012. I have added my VS2012 web application build on framework 4.5 on IIS8. Initially after adding the application when i ran it I got error "The requested content appears to be script and will not be served by the static file handler." Then I added a application pool and set its framework to 4.5 and added the same in my website. Still there were errors. Then I added the Handler *.aspx, *.ashx and *.axd. Finally the application ran. Now I am using devexpress grid on the page. This is how it shows:
The images/stylying is not coming. Tried everything but nothing seems to work. Can anybody please suggest how to reolve this issue.
You May try following:
makesure css and image files exist in the server
inspect those files loaded correctly (you may use developer tools)
if not you need to adjust the resource path.
I am trying to deploy an ASP.NET 3.5 Web Application to my production server and I am using the Web Deployment Project for this purpose. I have a folder named MasterPages in the root of the application which contains all the master page files. When I build this project in the release mode and deploy it on to the server I am getting the below error message:
Directory 'C:\inetpub\wwwroot\MasterPages' does not exist. Failed to start monitoring file changes.
I am using ASP.NET AJAX and the ToolkitScriptManager is on the master pages. I have noticed that the MasterPages folder is missing from the release build. Can anyone help me with this?
The actual problem was with the CombineScripts property of the ToolkitScriptManager. It was set to true but when I set it to false everything works.