I'm having to take over an ASP.NET Web Forms app that someone else wrote 7 or 8 years ago, but they've left. I don't know how long it's been since anyone has worked on this.
Anyway, I'm trying to figure how what's the production version, so I'm looking at various folders where the files are. I'm running WinMerge to check the differences. In one of the .aspx files there's only one different at the top of the file. Here it is,
taken from both files:
<%@ page language="VB" autoeventwireup="false" inherits="StaffInfo, App_Web_yzjdplqn" %>
and here's the second file's first line:
<%@ page language="VB" autoeventwireup="false" inherits="StaffInfo, App_Web_2fbvwchb" %>
Basically I understand what the page directive at the top of a .aspx file is. What I don't understand is what
App_Web_2fbvwchb and Go to the complete details ...