i'm looking fr the file highlighted in red but cant find it anywhere in the associated project just a bunch of .resource files can anyone give me some ideas to check
Partial Class MatterFlow_details_search
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
End Sub
End Class
Above the relation, you can rename it to another name
Programming to simplify, don't look for difficult way
Suwandi - Non Graduate Programmer
This is not a file but a class name which should be found in your details-search.aspx.vb file.
Edit: ah you look on the server on which the web site is installed ? Code is compiled into DLLs. You should start from the source code hopefully kept somewhere in your company ???
partial Class dealclosed
Inherits MasterTemplate ' System.Web.UI.Page
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.SqlConn = New System.Data.SqlClient.SqlConnection
Member
3 Points
16 Posts
older web forms
Jan 24, 2018 11:09 PM|kclarke|LINK
I have an old web form that i've been tasked with changing some of the functionality but I seems to be missing something
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="details-search.aspx.vb" Inherits="MatterFlow.details_search" %>
i'm looking fr the file highlighted in red but cant find it anywhere in the associated project just a bunch of .resource files can anyone give me some ideas to check
All-Star
52683 Points
15721 Posts
Re: older web forms
Jan 25, 2018 12:42 AM|oned_gk|LINK
Maybe like this
details-search.aspx.vb
Partial Class MatterFlow_details_search Inherits System.Web.UI.Page Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load End Sub End Class
Above the relation, you can rename it to another name
Suwandi - Non Graduate Programmer
Member
3 Points
16 Posts
Re: older web forms
Jan 25, 2018 06:14 PM|kclarke|LINK
but I'm trying to find the original file is there any specific way to find out where it is hiding?
All-Star
48570 Points
18082 Posts
Re: older web forms
Jan 25, 2018 06:36 PM|PatriceSc|LINK
Hi,
This is not a file but a class name which should be found in your details-search.aspx.vb file.
Edit: ah you look on the server on which the web site is installed ? Code is compiled into DLLs. You should start from the source code hopefully kept somewhere in your company ???
All-Star
52683 Points
15721 Posts
Re: older web forms
Jan 26, 2018 12:35 AM|oned_gk|LINK
The codebehind property value "details-search.aspx.vb" is the vb file, inherits is the class name inside the codebehind file.
MatterFlow looks like folder name
See complete information of page directive https://msdn.microsoft.com/en-us/library/ydy4x04a(v=vs.100).aspx
Suwandi - Non Graduate Programmer
Member
3 Points
16 Posts
Re: older web forms
Jan 26, 2018 11:07 PM|kclarke|LINK
would this be what i'm looking for ?
partial Class dealclosed
Inherits MasterTemplate ' System.Web.UI.Page
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.SqlConn = New System.Data.SqlClient.SqlConnection
End Sub
All-Star
52683 Points
15721 Posts
Re: older web forms
Jan 26, 2018 11:37 PM|oned_gk|LINK
try read this
https://docs.microsoft.com/en-us/dotnet/api/system.resources.resourcemanager?view=netframework-4.7.1
Suwandi - Non Graduate Programmer