Ask a Question related to ASP.NET General, Design and Development.
-
Kevin Vaughn #1
DLL Questions
I need to create a simple .dll file that handles usernames and passwords.
I've never created a .dll before, but now there's definitely a need for
security reasons.
I've read enough to hear people talk about referencing the .dll in the
project. To be honest, I'm writing all of my ASP.NET pages with Ultraedit
so I don't think I can do that. Do I need to run off and install VS.NET and
then come back?
What I really need is a standalone .dll that I can reference with a <%@ %>
tag, and will simply return the relevant information back to the calling
program. Is that even possible?
So far, I've managed to write a test script and compile it with vbc.exe, but
I'm not even sure how to test it.
What are the exact steps I would need to go through to get this done? Is
there a resource on the Internet that I've overlooked? I would appreciate
your help.
-Kevin
Kevin Vaughn Guest
-
AMD-64 Questions
Hi All: Newbie w/ some questions: PC: AMD-64 bit, full install working reasonably well (no attempts at multi-media yet): w/ Athlon AMD-64... -
Mac OS-10 & MX questions / Please Help!
A couple of questions: 1. I am getting a Mac with OS10 running Director MX. If I create a projector, will it run on older OS systems? 2. Which... -
2 questions
For an example of how to use the SysCmd, open the Northwind sample database, and look in the Utility module. They have a wrapper function named... -
The questions.
"Chris Thomas" <chrisvai777@hotmail.com> wrote in message news:9f682ea7.0307210257.5a2a89a1@posting.google.com... It depends on what drives you... -
2 questions :) - portal questions
Say the portal displays a relationship that uses the Box_ID field as the match field on both sides. In the child file (items in the box), add two... -
Cowboy \(Gregory A. Beamer\) #2
Re: DLL Questions
Visual Studio .NET will simplify your life, so I would suggest you use it.
It is not mandatory, if you feel comfortable with the command line compiler.
From ultra edit, you can create a class file and compile it using either
vbc.exe (VB.NET) or csc.exe (C#) or similar. The command line compiler
directives are included in the help file.
To reference the compiled .NET DLL (library), you will have to compile the
application with references. VS.NET makes this really easy, so, again, I
suggest using it, but you can command line compile the web app, as well.
If you use UltraEdit because you are comfortable with coding in it, you can
have VS.NET create the solution(s) and project(s) and configure VS.NET to
use UltraEdit as your editor. This can be configured on both a project and
an overall basis, so you have some flexibility while you learn VS.NET.
Another option is downloading CSharp Develop (which also does VB.NET) and
using it instead. It is a nice editor (not quite UltraEdit) that is
available free from [url]www.sourceforge.com[/url]. It can work with VS.NET solutions
and projects, so it gives another option if the pricing of VS.NET is an
issue.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"Kevin Vaughn" <kevin.vaughn@ttu.edu> wrote in message
news:vgjodh6s9j8k51@corp.supernews.com...and> I need to create a simple .dll file that handles usernames and passwords.
> I've never created a .dll before, but now there's definitely a need for
> security reasons.
>
> I've read enough to hear people talk about referencing the .dll in the
> project. To be honest, I'm writing all of my ASP.NET pages with Ultraedit
> so I don't think I can do that. Do I need to run off and install VS.NETbut> then come back?
>
> What I really need is a standalone .dll that I can reference with a <%@ %>
> tag, and will simply return the relevant information back to the calling
> program. Is that even possible?
>
> So far, I've managed to write a test script and compile it with vbc.exe,> I'm not even sure how to test it.
>
> What are the exact steps I would need to go through to get this done? Is
> there a resource on the Internet that I've overlooked? I would appreciate
> your help.
>
> -Kevin
>
>
Cowboy \(Gregory A. Beamer\) Guest



Reply With Quote

