Ask a Question related to ASP Database, Design and Development.
-
Piyush #1
Which is better include files or DLLs
Hello,
I am wodering for days now ,
which method is best when it comes to
using common functions like database connectivity ?
Also where to keep my business logic ?
which is faster/better, using an inc file or
using DDLs written in VB ?
can anyone help me in this regard ?
Thanks
Piyush Guest
-
Manage .ASP Include-Files...
Program to manage .ASP Include-Files... on: http://members.chello.at/otmar.pilgerstorfer/ enjoy it, and give me feedback, o.p. -
how do I hide database connection files using PHP include files?
I have the following at the beginning of the PHP page: <?php require_once('Connections/conn.php'); ?> I want to hide the connection file,... -
Include files in .NET
Hi, Does anyone know the syntax to include a .js file in an ASPX page. Colm -
DM MX and Include files
We recently converted from MS Interdev to DW MX and I have copied the files for our existing site into a local site in DW. Most of our pages have SSI... -
include files
Hi all, I used to use the include statement in classic asp to centralise my database connection, is there a better way in asp.net, whats the... -
William Tasso #2
Re: Which is better include files or DLLs
Piyush wrote:
depends:> Hello,
> I am wodering for days now ,
> which method is best when it comes to
> using common functions like database connectivity ?
o On a managed/shared server you may not have permission to insatall dlls
o Lan based apps may have traditional client/server apps that could make use
of the same logic.
o Etc.
in the RDBMS seems good> Also where to keep my business logic ?
faster development or performance? not necessarily the same.> which is faster/better, using an inc file or
> using DDLs written in VB ?
--
William Tasso - [url]http://WilliamTasso.com[/url]
William Tasso Guest
-
Bob Barrows #3
Re: Which is better include files or DLLs
Piyush wrote:
Straight asp will outperform dll's because you avoid the overhead of> Hello,
> I am wodering for days now ,
> which method is best when it comes to
> using common functions like database connectivity ?
> Also where to keep my business logic ?
> which is faster/better, using an inc file or
> using DDLs written in VB ?
> can anyone help me in this regard ?
> Thanks
instantiating them. This does not mean that you should not use them, just
that you need to be aware of the potential bottleneck. You need to make
intelligent trade-offs between code performance and code maintainablilty.
Bob Barrows
Bob Barrows Guest
-
Bullschmidt #4
Re: Which is better include files or DLLs
And include files (with an .asp extension instead of .inc of course so
users can't see what's in them) are great from a developer's sanity /
portability standpoint.
Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
[url]http://www.Bullschmidt.com[/url]
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest



Reply With Quote

