We have one existing website containing combination of ASP.NET pages + ASP pages and VB.net DLLs. We are able to deploy ASP.NET pages as Web app on Azure but can you please guide us how can we register VB.Net DLL on web app on Azure?
did you reference the vb.net dll in your solution (or put it in the /bin subfolder) and deployed it as such?
You can use Kudu on Azure Web Apps to see what's deployed.
To get into Kudu replace http://mysite.azurewebsites.net/ with https://mysite.scm.azurewebsites.net/ in your browser's address bar. It's a great tool to see what's deployed, going on, ... has extensions to help you
out with Web Apps.
Kris.
Read my blog | Twitter Working with Azure, chatbots, ASP.NET MVC, Web API, EF, MS SQL, ...
Keep the forums clean: report to the moderation team!
Member
1 Points
4 Posts
Register DLL in Webapp
Feb 23, 2018 07:51 AM|Chirag Limbachiya|LINK
We have one existing website containing combination of ASP.NET pages + ASP pages and VB.net DLLs. We are able to deploy ASP.NET pages as Web app on Azure but can you please guide us how can we register VB.Net DLL on web app on Azure?
Thanks in advance..
All-Star
191741 Points
20952 Posts
ASPInsiders
Moderator
MVP
Re: Register DLL in Webapp
Feb 23, 2018 10:17 AM|XIII|LINK
Hi,
did you reference the vb.net dll in your solution (or put it in the /bin subfolder) and deployed it as such?
You can use Kudu on Azure Web Apps to see what's deployed.
To get into Kudu replace http://mysite.azurewebsites.net/ with
https://mysite.scm.azurewebsites.net/
in your browser's address bar. It's a great tool to see what's deployed, going on, ... has extensions to help you out with Web Apps.Kris.
Working with Azure, chatbots, ASP.NET MVC, Web API, EF, MS SQL, ...
Keep the forums clean: report to the moderation team!
Member
1 Points
4 Posts
Re: Register DLL in Webapp
Feb 23, 2018 10:22 AM|Chirag Limbachiya|LINK
Ok Kris, I will try to put DLL using KUDU and get back. Thanks for your time.