Saturday 17 September 2016

29 Net Banking

Introduction:
        The project “ Net Banking” is a model website used for performing internet banking. The website enables the users to execute basic banking transactions by sitting at the comfort of their home/office. The customers can access their bank account from the bank website. Through internet, the traditional banking takes the shape of a click and port model. E-banking allows bank transactions round the clock.
           Anybody who is an account holder in the bank can access the bank account online by filling his account number and personal details. The transactions are executed online through the most powerful and secure backend software which is the MS SQL server 2003. This software is web oriented and application oriented.
[cc lang=”php” tab_size=”2″ lines=”40″]Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.ReportSource
Imports CrystalDecisions.Shared
Imports System
Imports System.ComponentModel
Public Class RunningServices
Inherits ReportClass
Public Sub New()
MyBase.New
End Sub
Public Overrides Property ResourceName() As String
Get
Return “RunningServices.rpt”
End Get
Set
‘Do nothing
End Set
End Property
Public Overrides Property NewGenerator() As Boolean
Get
Return true
End Get
Set
‘Do nothing
End Set
End Property
Public Overrides Property FullResourceName() As String
Get
Return “Networksniffer.RunningServices.rpt”
End Get
Set
‘Do nothing
End Set
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Section1() As CrystalDecisions.CrystalReports.Engine.Section
Get
Return Me.ReportDefinition.Sections(0)
End Get
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Section2() As CrystalDecisions.CrystalReports.Engine.Section
Get
Return Me.ReportDefinition.Sections(1)
End Get
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Section3() As CrystalDecisions.CrystalReports.Engine.Section
Get
Return Me.ReportDefinition.Sections(2)
End Get
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Section4() As CrystalDecisions.CrystalReports.Engine.Section
Get
Return Me.ReportDefinition.Sections(3)
End Get
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Section5() As CrystalDecisions.CrystalReports.Engine.Section
Get
Return Me.ReportDefinition.Sections(4)
End Get
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property Parameter_IPAddress() As CrystalDecisions.[Shared].IParameterField
Get
Return Me.DataDefinition.ParameterFields(0)
End Get
End Property
End Class
<System.Drawing.ToolboxBitmapAttribute(GetType(CrystalDecisions.[Shared].ExportOptions), “report.bmp”)> _
Public Class CachedRunningServices
Inherits Component
Implements ICachedReport
Public Sub New()
MyBase.New
End Sub
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public Overridable Property IsCacheable() As Boolean Implements CrystalDecisions.ReportSource.ICachedReport.IsCacheable
Get
Return true
End Get
Set

End Set
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public Overridable Property ShareDBLogonInfo() As Boolean Implements CrystalDecisions.ReportSource.ICachedReport.ShareDBLogonInfo
Get
Return false
End Get
Set

End Set
End Property
<Browsable(false), _
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public Overridable Property CacheTimeOut() As System.TimeSpan Implements CrystalDecisions.ReportSource.ICachedReport.CacheTimeOut
Get
Return CachedReportConstants.DEFAULT_TIMEOUT
End Get
Set

End Set
End Property
Public Overridable Function CreateReport() As CrystalDecisions.CrystalReports.Engine.ReportDocument Implements CrystalDecisions.ReportSource.ICachedReport.CreateReport
Dim rpt As RunningServices = New RunningServices
rpt.Site = Me.Site
Return rpt
End Function
Public Overridable Function GetCustomizedCacheKey(ByVal request As RequestContext) As String Implements CrystalDecisions.ReportSource.ICachedReport.GetCustomizedCacheKey
Dim key As [String] = Nothing
‘// The following is the code used to generate the default
‘// cache key for caching report jobs in the ASP.NET Cache.
‘// Feel free to modify this code to suit your needs.
‘// Returning key == null causes the default cache key to
‘// be generated.

‘key = RequestContext.BuildCompleteCacheKey(
‘ request,
‘ null, // sReportFilename
‘ this.GetType(),
‘ this.ShareDBLogonInfo );
Return key
End Function
End Class[/cc]

VB.Net Net Banking Project Description:

            Net banking .Net Project provides a wide array of banking services online. There are four main modules in the project-account information, transaction, interest calculation and reports. The first module is account creation of the user which can be any type of account. All these details are fed into the database and this is validated by the bank.
         The second module consists of various transactions carried out by the customer. These transactions include deposit, withdrawal and money transfer. The administrator gives user id and password to the user. The user however can change the password when he wishes to. Withdrawals and transferring of amount is facilitated by this system in a secure fashion. Also, various other banking services can be provided.
Conclusion:
           Thus the main goal of developing software that meets the requirements of the users is designed here. User friendliness is also part of the project and the user can access the information without making use of complicated procedures. All other features like data security, extendibility and scope for future enhancements is incorporated in this project.
download Project Report of CSE NET banking a ASP.Net and VB.Net Project.

No comments:

Post a Comment