This repository was archived by the owner on Oct 16, 2020. It is now read-only.
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
Converting VB.Net Web Form pages to C# #468
Open
Description
When converting a VB.Net Project to C#, the .aspx pages with code behind didn't get changed to C#. They still referenced the old xyz.aspx.vb instead of the new xyz.aspx.cs code behind files.
Example:
Old -
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="MyPage.aspx.vb" Inherits="Namespace.MyPage" %>
New (should be) -
<%@ Page Language="C#" AutoEventWireup="false" CodeBehind="MyPage.aspx.cs" Inherits="Namespace.MyPage" %>