Question

How come a file being uploaded using Louis Motens' COM-Less software ASP solutions uploads an empty file?

Asked by: pborregg

This question references: <b>How to upload a document, store its name and properties in a database, using ASP Classic with VB and do it for free!</b> and is a continuation....

I've used the solution referenced here: http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=8525&lngWId=4

But the problem is: when the file is uploaded it uploads EMPTY!!! Meaning, the name of the file is put on the server, but the contents of the file are missing and when you open it, there's nothing there.

Here's the modified code I've written:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#INCLUDE FILE="clsUpload.asp"-->
<%
'THIS WRITES TO THE DATABASE

Dim objUpload
Dim strFileName, strID, strPID, strDocCat, strDesc, strDocLoc, strDisp, strDateAdded, strBytes
Dim objConn
Dim objRs
Dim lngFileID

' Instantiate Upload Class
Set objUpload = New clsUpload

' Grab the form fields
strID = objUpload.Fields("ID").value
strPID = objUpload.Fields("PID").value
strFileName = objUpload.Fields("doc_name").value
strDocCat = objUpload.Fields("doc_category").value
strDesc = objUpload.Fields("description").value
strDocLoc = objUpload.Fields("DocLoc").value
strDisp = objUpload.Fields("display").value
strDateAdded = objUpload.Fields("date_added").value

'Response.Write(strID)
'Response.Write(strPID)
'Response.Write(strFileName)
'Response.Write(strDocCat)
'Response.Write(strDesc)
'Response.Write(strDocLoc)
'Response.Write(strDisp)
'Response.Write(strDateAdded)

Set objConn = Server.CreateObject("ADODB.Connection")
Set objRs = Server.CreateObject("ADODB.Recordset")

' Sometimes I personally have errors with one method on different servers, but the other works.
'objConn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("Files.mdb")
'objConn.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("Files.mdb")
'ACCESS
'objConn.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=F:\\0\\1\\131\\30\\1620682\\user\\1746753\\htdocs\\db\\dbname.db;UID=userid;PWD=password;Persist Security Info=False"
'MS SQL
objConn.Open "Provider=sqloledb; Data Source=205.178.152.124; Initial Catalog=webprojectsql; User Id=F:\0\1\131\30\1620682\user\1746753\htdocs\db\dbname.db; User Id=userid; Password=password"


objRs.Open "documents", objConn, 3, 3

objRs.AddNew

objRs.Fields("ID").Value = strID
objRs.Fields("PID").Value = strPID
objRs.Fields("doc_name").Value = strFileName
objRs.Fields("doc_category").Value = strDocCat
objRs.Fields("doc_description").Value = strDesc
objRs.Fields("doc_location").Value = strDocLoc
objRs.Fields("active").Value = strDisp
objRs.Fields("date_added").Value = strDateAdded

objRs.Update
objRs.Close
lngFileID = strID
%>
<%
'THIS WRITES TO THE FILE SYSTEM!
Dim strPath

' Grab the file name
' strFileName = objUpload.Fields("doc_name").FileName

' Compile path to save file to
' strPath = Server.MapPath("Uploads") & "\" & strFileName
strPath = "F:\0\1\131\30\1620682\user\1746753\htdocs\webproject\content" & "\" & strFileName

'Response.Write(strPath)

' Save the binary data to the file system
objUpload("doc_name").SaveAs strPath

' Release upload object from memory
Set objRs = Nothing
Set objConn = Nothing
Set objUpload = Nothing
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document Saved</title>
<link href="css/general.css" rel="stylesheet" type="text/css" />
<table width="35%" border="0" align="center" cellpadding="3" cellspacing="2" class="silverinset">
  <tr class="titlecentercell">
    <td>Your Document, <%= strFileName %>, has been saved successfully and uploaded!</td>
  </tr>
  <tr>
    <td align="center"><input name="goBack" type="button" class="small" onclick="location.href='list-subproject-items.asp?pid=<%= Session("SV_PID") %>'" value="Return to Project Detail" /></td>
  </tr>
</table>

<p>&nbsp;</p>
</body>
</html>

It all works fine, again, except the file contents are NOT uploaded with the file name. It's empty and all that's there is a 1K file with a name and nothing in the file itself.

Thanks.

Peter

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2008-12-01 at 16:04:24ID23948453
Tags

Microsoft

,

ASP (Classic)

,

Classic

,

Being used on Network Solutions servers

Topics

Adobe Dreamweaver

,

Active Server Pages (ASP)

Participating Experts
1
Points
0
Comments
8

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. remove xmlns:
    why after i parse my xmldoc with an xslt I get on my result document this <?xml version=\"1.0\" encoding=\"utf-16\"?> and the xmlns:asp namespace all over the place? how do you remove it?
  2. xmlns
    Hi All Ive got an xml transformation into xhtml which starts.... <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="org.apache.xalan.xslt.ex...
  3. Linked stylesheet (generated by ASP script) blues
    Experts, I have a page. In this page, I am trying to include a stylesheet that is generated by ASP. The stylesheet in itself looks fine: body { color: #ffff00; font-family: Arial; font-size: 10pt; background-color: #d1d1d1; } The page looks like this: <?xml version...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: dankhasisPosted on 2008-12-02 at 00:00:12ID: 23075116

Because the form you are submitting is not enctype="multipart/form-data"


 

by: pborreggPosted on 2008-12-03 at 16:54:35ID: 23091855

Ok, perhaps I didn't make myself clear.  This page you see in the example, writes to the database and then writes the file to the file system. Below is the actual form:

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
<%
//TRAP the session ID and make sure nobody can copy and paste as FAVORITE
//Go to bottom of page and take back to Login Screen.
var SESSID = Request.QueryString("SESSID");
//Response.Write("SESSIONID:: " + SESSID);
//Response.Write(Session.SessionID);
if (SESSID = Session("SID"))
{
%>
<!--#include file="Connections/WebProject.asp" -->
<%
var documents__MM_ID = "1";
if (String(Request.QueryString("ID")) != "undefined" &&
    String(Request.QueryString("ID")) != "") {
  documents__MM_ID = String(Request.QueryString("ID"));
}
%>
<%
var documents_cmd = Server.CreateObject ("ADODB.Command");
documents_cmd.ActiveConnection = MM_WebProject_STRING;
documents_cmd.CommandText = "SELECT * FROM documents WHERE id = ?";
documents_cmd.Prepared = true;
documents_cmd.Parameters.Append(documents_cmd.CreateParameter("param1", 5, 1, -1, documents__MM_ID)); // adDouble

var documents = documents_cmd.Execute();
var documents_numRows = 0;
%>
<%
var MaxDocVal__MM_PID = "AEPortal2007";
if (String(Request.QueryString("PID")) != "undefined" &&
    String(Request.QueryString("PID")) != "") {
  MaxDocVal__MM_PID = String(Request.QueryString("PID"));
}
%>
<%
var MaxDocVal_cmd = Server.CreateObject ("ADODB.Command");
MaxDocVal_cmd.ActiveConnection = MM_WebProject_STRING;
MaxDocVal_cmd.CommandText = "SELECT MAX(id) as Expr1000 FROM documents WHERE PID = ?";
MaxDocVal_cmd.Prepared = true;
MaxDocVal_cmd.Parameters.Append(MaxDocVal_cmd.CreateParameter("param1", 200, 1, 255, MaxDocVal__MM_PID)); // adVarChar

var MaxDocVal = MaxDocVal_cmd.Execute();
var MaxDocVal_numRows = 0;
%><%
var docCategory_cmd = Server.CreateObject ("ADODB.Command");
docCategory_cmd.ActiveConnection = MM_WebProject_STRING;
docCategory_cmd.CommandText = "SELECT * FROM document_categories";
docCategory_cmd.Prepared = true;

var docCategory = docCategory_cmd.Execute();
var docCategory_numRows = 0;
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Add a Document</title>
<link href="css/general.css" rel="stylesheet" type="text/css" />
      <SCRIPT LANGUAGE="JavaScript" SRC="scripts/CalendarPopup.js"></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="scripts/AnchorPosition.js"></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="scripts/PopupWindow.js"></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="scripts/date.js"></SCRIPT>
      <SCRIPT LANGUAGE="JavaScript">
            var cal = new CalendarPopup();
      </SCRIPT>
      <SCRIPT LANGUAGE="JavaScript" SRC="scripts/general.js"></SCRIPT>
      <script language="javascript" type="text/javascript">

      var TYPE = "";
      
      function setType(what)
      {
      
            //alert("WHAT::" + what);
            TYPE = what;
      
      }

      function setMax()
      {
      
            var MAXVAL = document.getElementById("MM_maxvalue").value;
            var Adder = 1;
            var fn = (MAXVAL*1) + Adder;
            document.getElementById("id").value = fn;
      
      }

      

      function getFileNameOnly(what)
      {
            //get path value (including file name)
            var fileAndPath = document.getElementById(what).value;
            
            //find the index of the last "\"
            var lastPathDelimiter = fileAndPath.lastIndexOf("\\");
            
            //get everything after the last "\"
            var fileNameOnly = fileAndPath.substring(lastPathDelimiter+1);

            //var PathOnly = "E:\0\1\28\121\1517121\user\1632686\htdocs\racms\content\";            
            
            var PathOnly = "E:\\0\\1\\131\\30\\1620682\\user\\1746753\\htdocs\\webproject\\content";
            //alert(PathOnly);
            //alert(fileNameOnly);
            document.getElementById('doc_name').value = fileNameOnly;
            document.getElementById('DocLoc').value = PathOnly;

            //alert("TYPE::"+TYPE);
            /***if (TYPE=="pdf")
            {
                  window.open("uploadPdf.asp?TYPE="+fileAndPath,"image","status=0,location=0,menubar=0,scrollbars=0,height=300px,width=500px");            
            }
            if (TYPE=="doc")
            {
                  window.open("uploadDocs.asp?TYPE="+fileAndPath,"image","status=0,location=0,menubar=0,scrollbars=0,height=300px,width=500px");            
            }
            if (TYPE=="xls")
            {
                  window.open("uploadXls.asp?TYPE="+fileAndPath,"image","status=0,location=0,menubar=0,scrollbars=0,height=300px,width=500px");            
            }
            if (TYPE=="ppt")
            {
                  window.open("uploadPpt.asp?TYPE="+fileAndPath,"image","status=0,location=0,menubar=0,scrollbars=0,height=300px,width=500px");            
            }                                          
            */
      }
      function dateSet()
      {
      
            today = new Date();
            
            document.getElementById('date_added').value = today.getMonth() + 1 +"/"+ today.getDate() +"/"+ today.getFullYear();
      
      }
</script>
</head>
<body onload="setMax(); dateSet();">
<form name="theForm" action="ToDatabase.asp" enctype="MULTIPART/FORM-DATA" method="post">
  <table align="center" class="silverinset">
    <tr valign="baseline">
      <td colspan="2" align="center" valign="top" nowrap="nowrap" class="titlecentercell">Document Upload Wizard</td>
    </tr>
    <tr valign="baseline">
      <td width="99" align="right" nowrap="nowrap" class="seltabcell">ID:</td>
      <td width="490"><input type="text" name="id" id="id" value="" size="32" readonly="readonly" style="background-color:#CCCCCC; color:#000033" />      </td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">Project Identification (PID):</td>
      <td><input type="text" name="PID" value="<%=Request.QueryString("PID") %>" size="32" readonly="readonly" style="background-color:#CCCCCC; color:#000033" /></td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">File name:</td>
      <td><input type="text" id="doc_name" name="doc_name" value="" size="32" readonly="readonly" style="background-color:#CCCCCC; color:#000033"/>      </td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">Category:</td>
      <td><select name="doc_category" id="doc_category">
        <option value="select">Select One</option>
        <%
while (!docCategory.EOF) {
%><option value="<%=(docCategory.Fields.Item("ID").Value)%>"><%=(docCategory.Fields.Item("category_name").Value)%></option>
        <%
  docCategory.MoveNext();
}
if (docCategory.CursorType > 0) {
  if (!docCategory.BOF) docCategory.MoveFirst();
} else {
  docCategory.Requery();
}
%>
      </select></td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">Comments/Description:</td>
      <td><textarea name="description" id="description" cols="45" rows="5"></textarea></td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">File Path:</td>
      <td><input type="file" id="myFile" name="myFile" value="" size="32" onchange="getFileNameOnly(this.name);" />
        <input type="hidden" name="DocLoc" id="DocLoc" /></td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">Display:</td>
      <td><input name="display" id="display" type="checkbox" value="1" checked="checked" readonly="readonly" style="background-color:#CCCCCC" />      </td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="seltabcell">Date added:</td>
      <td><input type="text" name="date_added" value="" size="32" readonly="readonly" style="background-color:#CCCCCC" />
        <a href="#" onclick="cal.select(document.forms['form1'].date_added,'anchor1','MM/dd/yyyy'); return false;"
   name="anchor1" id="anchor1"><img src="images/cal.gif" alt="Calendar" width="16" height="16" border="0" /></a></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right"><input name="goback" type="button" class="small" id="goback" onclick="changePageAdmin('vp','<%= Session("ROLEID") %>','<%= Session("GROUPID") %>','<%= Session("USERID") %>')" value="Project List Screen" /></td>
      <td><input name="Submit" type="submit" class="small" value="Insert record" />      </td>
    </tr>
  </table>
 
  <input type="hidden" id="MM_maxvalue" name="MM_maxvalue" value="<%=(MaxDocVal.Fields.Item("Expr1000").Value)%>" />
</form>
<p>&nbsp;</p>
</body>
</html>
<%
documents.Close();
%>
<%
MaxDocVal.Close();
%>
<%
docCategory.Close();
%>
<%
      //Trap attempt to copy and past URL into another browser
      } else {

      Response.Redirect("index.asp");
}
%>

As you can see, the ENC-TYPE is already what you suggested. So I'm back to square one.  The form action goes to the ToDatabase.asp page, the first code snippet here.  So, it's something with the previous code snippet or the server on Network Solutions that's not allowing the content of the file to be uploaded. Your thoughts...???

Thanks, peter

 

by: dankhasisPosted on 2008-12-03 at 17:40:59ID: 23092043

Are you including all the classes? I think his upload script requires two files.

Have actually tried uploading in a simpler version of the code you have here? If you can't get it to work in a simple prototype stage, then debugging more code for no reason is not needed.

If you setup a form and a separate processing page, and then write the file to disk or output it to the screen do you see it?

Before you can add anything into the database you need to make sure your file exists by making sure the length of the field is greater than zero.

I also noticed you specify docloc as the client side file name. Is this your intent by design? Do you really want to save the document location as the client side location? Where do you store the string of the server directory in which the file is in?

Before wasting your own time even more, please do a sample upload script to see if your provider is giving you the ability to upload. Make sure your target upload directory has ALL write permissions for your user, or for all users.



 

by: pborreggPosted on 2008-12-03 at 19:10:49ID: 23092387

Are you including all the classes? I think his upload script requires two files.

<b>Yes, I'm including all the files. The first snippet is the Processing script and the second snippet is the "FORM" page.</b>

Have actually tried uploading in a simpler version of the code you have here? If you can't get it to work in a simple prototype stage, then debugging more code for no reason is not needed. <b>Yes, the simple example works locally but not on the server... I've tried it locally and on the net and the local version is all that works."</b>

If you setup a form and a separate processing page, and then write the file to disk or output it to the screen do you see it? <b>Yes</b>

Before you can add anything into the database you need to make sure your file exists by making sure the length of the field is greater than zero. <b>I'm not doing that... good suggestion....</b>

I also noticed you specify docloc as the client side file name. Is this your intent by design? <b>Yes</b> Do you really want to save the document location as the client side location? <b>The SERVER side location is being saved, not the client side. I've already taken care of this...</b> Where do you store the string of the server directory in which the file is in? <b>DocLoc field which is hidden...</b>

Before wasting your own time even more, please do a sample upload script to see if your provider is giving you the ability to upload. Make sure your target upload directory has ALL write permissions for your user, or for all users. <b> All write permissions have been granted....</b>

 

by: dankhasisPosted on 2008-12-03 at 19:15:07ID: 23092408

After granting write permissions, it still doesn't work in a simplified model?

 

by: pborreggPosted on 2008-12-03 at 19:16:07ID: 23092413

Oh, I forgot... the first code snippet is the (SECOND or PROCESSING page) and the Second code snippet is the form.  What I did was take ToFileSystem.asp and ToDatabase.asp and combined them into the ToDatabase.asp (the FIRST CODE SNIPPET).  Again, everything works except the content of the file is not being uploaded.

 

by: pborreggPosted on 2008-12-04 at 08:15:27ID: 23096625

No.... it doesn't.

 

by: pborreggPosted on 2008-12-26 at 07:37:48ID: 23245295

Found solution myself...

Peter

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...