Skip to content
Discussion options

You must be logged in to vote

Hi Victor,

Yes, KissLog works on AspNet WebForms as well :) The install instructions are similar to AspNet MVC.

  1. Open NuGet Package Manager Console (in Visual Studio) and run:
PM> Install-Package KissLog.AspNet.Web -Version 4.1.0
  1. Update web.config
<configuration>
  <appSettings>
    <add key="KissLog.OrganizationId" value="_replace_with_your_value_" />
    <add key="KissLog.ApplicationId" value="_replace_with_your_value_" />
    <add key="KissLog.ApiUrl" value="https://api.kisslog.net" />
  </appSettings>
</configuration>
  1. Update Global.asax
namespace WebApplication1
{
    public class Global : HttpApplication
    {
        void Application_Start(object sender, EventArgs e)
        {

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@catalingavan
Comment options

@victorssr
Comment options

Answer selected by catalingavan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants