How to write code for global.ascx.cs on dotnetnuke website?

I need to write code in the application level variable in the global.ascx.cs file on my dotnetnuke website in order to change the URL of some pages using query management.

I got a tutorial from youtube to do this by editing the global.ascx.cs file

+4
source share
1 answer

Changes to URLs inside DotNetNuke usually happen through an HTTP module, you can register your own or you can use a tool like URLMaster to configure URLs in DNN.

Another option is to make changes to the SITEURLS.CONFIG file in the root of the DNN site. You can find the interface for editing siteurls.config on the host / host settings page under friendly URL settings.

0
source

All Articles