CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.club_web_site_starter_kit Tags:
Item Type: NewsGroup Date Entered: 9/7/2006 1:58:02 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 12 Views: 13 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
13 Items, 1 Pages 1 |< << Go >> >|
Lan_Lord
Asp.Net User
read/display and/or download files stored in DIR9/7/2006 1:58:02 AM

0/0

Hello everyone. New guy here.

I have a file upload page that allows any file to be uploaded to a subdirectory of the web root.

What I would like is to have a way to automatically read all the files in this directory and have them available for download by asp:hyperlink or whatever.

I have done some searching and can't figure out how to get it done.

Would I use something like an XmlDatasource? and if so could you point me in the right direction of a tutorial for this.

Thanks for the help. 


I remember Windows 3.1 for WG
HAHAHAHAHA
Cos C
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 2:20:37 AM

0/0

what you are looking for is the system.io namespace, the directoryinfo and fileinfo classes. you can open up that directory use the directoryinfo object to get a list of the files and other directories. then you will want to set up a couple of recursive subroutines to add the objects to either a list, repeater or treeview with the appropriat links and icons. You can probably google up the code for what ever implementation you want.

 


Hope this helps, Cheers,

Cos C
Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 4:44:50 AM

0/0

Hi Cos,

Thanks for the reply.

This is what I have so far:

<%@ Page Language="VB" %>

<%@ Import Namespace="System.IO" %>

<script language="VB" runat="server">

Sub Page_Load(sender as Object, e as EventArgs)

Dim dirInfo As New DirectoryInfo(Server.MapPath("Files"))

 

articleList.DataSource = dirInfo.GetFiles("*.*")

articleList.DataBind()

End Sub

</script>

<asp:DataGrid runat="server" id="articleList" Font-Name="Verdana"

AutoGenerateColumns="False" AlternatingItemStyle-BackColor="#eeeeee"

HeaderStyle-BackColor="Navy" HeaderStyle-ForeColor="White"

HeaderStyle-Font-Size="15pt" HeaderStyle-Font-Bold="True" Font-Names="Verdana">

<AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>

<HeaderStyle BackColor="Navy" ForeColor="White" Font-Size="15pt" Font-Bold="True"></HeaderStyle>

<Columns>

<asp:HyperLinkColumn HeaderText="File Name" Target="_blank" DataTextField="Name" DataNavigateUrlField="Name"> </asp:HyperLinkColumn>

<asp:BoundColumn DataField="LastWriteTime" HeaderText="Last Write Time" DataFormatString="{0:d}">

<ItemStyle HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="Length" HeaderText="File Size" DataFormatString="{0:#,### bytes}">

<ItemStyle HorizontalAlign="Right"></ItemStyle>

</asp:BoundColumn>

</Columns>

</asp:DataGrid>

It shows the files as expected with the file name showing as a hyperlink but I can't figure out how to make it download the file when you click on the file name.

Thanks again for the help


I remember Windows 3.1 for WG
HAHAHAHAHA
Cos C
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 6:03:07 AM

0/0

In your <asp:hyperlinkColumn> try this:

<asp:HyperLinkColumn
    
HeaderText="File Name"
     Target="_blank" 
     DataTextField="Name"
     DataNavigateUrlField="Name"
     DataNavigateUrlFormatString="ftp://localhost:1163/vbASPDemo/Files/{0}" >
</asp:HyperLinkColumn>

 Note the DataNavigateUrlFormatString will need to be changed to match your application name and url for production.


Hope this helps, Cheers,

Cos C
Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 2:13:30 PM

0/0

Ok this is what I wound up with:

<%@ Page Language="VB" MasterPageFile="~/Default.master" Title="Untitled Page" %>

<%@ Import Namespace="System.IO" %>

<script runat="server">

Sub Page_Load(sender as Object, e as EventArgs)

Dim dirInfo As New DirectoryInfo(Server.MapPath("Files"))

 

articleList.DataSource = dirInfo.GetFiles("*.*")

articleList.DataBind()

End Sub

</script>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<div class="body">

<br /><h1 style="text-align: center">

Downloads</h1><br />

<br />

<asp:DataGrid ID="articleList" runat="server" AutoGenerateColumns="False" Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" Font-Underline="False" HorizontalAlign="Center" Width="425px">

<Columns>

<asp:HyperLinkColumn HeaderText="File Name" Target="_blank" DataTextField="Name" DataNavigateUrlField="Name" DataNavigateUrlFormatString="~/Files/{0}" ></asp:HyperLinkColumn>

<asp:BoundColumn DataField="LastWriteTime" HeaderText="Last Write Time" DataFormatString="{0:d}">

<ItemStyle HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="Length" HeaderText="File Size" DataFormatString="{0:#,### bytes}">

<ItemStyle HorizontalAlign="Right"></ItemStyle>

</asp:BoundColumn>

</Columns>

</asp:DataGrid>

</div>

</asp:Content>

It does everything I wanted.

Now I need to figure out how to display a description of each file.

Thanks for all the help Cos.


I remember Windows 3.1 for WG
HAHAHAHAHA
Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 2:13:34 PM

0/0

Ok this is what I wound up with:

<%@ Page Language="VB" MasterPageFile="~/Default.master" Title="Untitled Page" %>

<%@ Import Namespace="System.IO" %>

<script runat="server">

Sub Page_Load(sender as Object, e as EventArgs)

Dim dirInfo As New DirectoryInfo(Server.MapPath("Files"))

 

articleList.DataSource = dirInfo.GetFiles("*.*")

articleList.DataBind()

End Sub

</script>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<div class="body">

<br /><h1 style="text-align: center">

Downloads</h1><br />

<br />

<asp:DataGrid ID="articleList" runat="server" AutoGenerateColumns="False" Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" Font-Underline="False" HorizontalAlign="Center" Width="425px">

<Columns>

<asp:HyperLinkColumn HeaderText="File Name" Target="_blank" DataTextField="Name" DataNavigateUrlField="Name" DataNavigateUrlFormatString="~/Files/{0}" ></asp:HyperLinkColumn>

<asp:BoundColumn DataField="LastWriteTime" HeaderText="Last Write Time" DataFormatString="{0:d}">

<ItemStyle HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="Length" HeaderText="File Size" DataFormatString="{0:#,### bytes}">

<ItemStyle HorizontalAlign="Right"></ItemStyle>

</asp:BoundColumn>

</Columns>

</asp:DataGrid>

</div>

</asp:Content>

It does everything I wanted.

Now I need to figure out how to display a description of each file.

Thanks for all the help Cos.


I remember Windows 3.1 for WG
HAHAHAHAHA
Cos C
Asp.Net User
Re: read/display and/or download files stored in DIR9/7/2006 3:51:24 PM

0/0

Lan,

Glad to help, as far as descriptions go, I would recommend creating a filedescriptions.xml file in each directory that is filtered out by your display routine, but has nodes with in it do describe each file. But that is just a quick idea...


Hope this helps, Cheers,

Cos C
Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/11/2006 12:41:36 AM

0/0

What do ya think of this idea:

I'm thinking of creating a new table and storing the file info in that while still storing the files in the DIR.

That way I can use a Gridview or whatever to display the file info with a download link pointing to the file for download.


I remember Windows 3.1 for WG
HAHAHAHAHA
Cos C
Asp.Net User
Re: read/display and/or download files stored in DIR9/11/2006 2:15:14 AM

0/0

a little redundant, but that is not always bad. Personally I prefer the xml file approach because it is self contained, where as a table (and subsequent database to support that "table", connections, commands, etc.) increases the complexity. (This may have positive impacts on scalablity and performance however...) I would certainly not call your idea 'wrong', especially as I have only a limited view of what you are really trying to accomplish.
Hope this helps, Cheers,

Cos C
typhoid
Asp.Net User
Re: read/display and/or download files stored in DIR9/11/2006 5:06:00 AM

0/0

Lan_Lord:

What do ya think of this idea:

I'm thinking of creating a new table and storing the file info in that while still storing the files in the DIR.

That way I can use a Gridview or whatever to display the file info with a download link pointing to the file for download.

Are you aware of the white paper for extending the club site?  It adds a documents storage and display to the original club site.  The whitepaper approach stores everything (document name, document, category, comments) in the database.  However, there are some folks who modified the whitepaper approach to do just about what you are suggesting - store document name, category, and comments in the database but store the files in a folder.  This thread covers most of it: http://forums.asp.net/thread/983940.aspx

Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/11/2006 11:40:02 AM

0/0

I've tried the Whitepaper but never got it to work properly. This is the first I've tried any type of programming but it seems that there are a lot of errors in it and I don't know enough to sort through it to fix it. Its been a while since I looked through the post on the whitepaper errors tho so I think i'll go see if the ASP Guru's have corrected it.

Thanks for the reply Cos.


I remember Windows 3.1 for WG
HAHAHAHAHA
Lan_Lord
Asp.Net User
Re: read/display and/or download files stored in DIR9/11/2006 11:43:58 AM

0/0

Sorry typhoid

I didn't notice who I was replying to. To early in the morning for me I guess.

Anyway, Thanks for the reply.


I remember Windows 3.1 for WG
HAHAHAHAHA
typhoid
Asp.Net User
Re: read/display and/or download files stored in DIR9/12/2006 1:38:56 AM

0/0

The following works for me.  It is basically the whitepaper version with a modification to store the files in a "files" directory off of the web root.

1) Create a "files" directory off of the web root

2) Use the following to create the tables (you may need to modify it to specify the table owner - depending on your hosting company):

CREATE TABLE [DocumentCategories] (
 [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,
 [CategoryName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
 [IsPublic] [bit] NULL
) ON [PRIMARY]
GO

CREATE TABLE [Documents] (
 [DocumentID] [int] IDENTITY (1, 1) NOT NULL ,
 [DocumentName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
 [DateInput] [datetime] NULL ,
 [Comments] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
 [DocumentCategory] [int] NULL ,
 [TopDoc] [bit] NULL
) ON [PRIMARY]
GO

ALTER TABLE [DocumentCategories] ADD
 CONSTRAINT [PK_DocumentCategories] PRIMARY KEY  CLUSTERED
 (
  [CategoryID]
 )  ON [PRIMARY]
GO

ALTER TABLE [Documents] ADD
 CONSTRAINT [PK_Documents] PRIMARY KEY  CLUSTERED
 (
  [DocumentID]
 )  ON [PRIMARY]
GO

3) Here is the files.aspx page:

<%@ Page Language="C#" MasterPageFile="~/Default.master" Title="Files" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div id="body">
        <div class="fullwidth">
            <h2>File Categories</h2>
            <p>Click on a category to see a list of available files.</p>
            <p>
                <asp:DataList ID="DataList1" runat="server" DataKeyField="CategoryID" DataSourceID="SqlDataSource1">
                    <ItemTemplate>
                        <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# Eval("CategoryID", @"Files.aspx?categoryid={0}") %>'
                            Text='<%# Eval("CategoryName") %>'></asp:HyperLink>
                    </ItemTemplate>
                </asp:DataList><asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ClubSiteDB %>"
                    SelectCommand="SELECT * FROM [DocumentCategories] WHERE ([IsPublic] = @IsPublic) ORDER BY [CategoryName]">
                    <SelectParameters>
                        <asp:Parameter DefaultValue="True" Name="IsPublic" Type="Boolean" />
                    </SelectParameters>
                </asp:SqlDataSource>
            </p>
        </div>
       
        <div class="fullwidth">
            <h2>Files</h2>
            <p>
                <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
                    AutoGenerateColumns="False" DataKeyNames="DocumentID" Width="100%" DataSourceID="SqlDataSource2">
                    <Columns>
                        <asp:TemplateField HeaderText="Document Name" SortExpression="DocumentName">
                            <EditItemTemplate>
                                <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("DocumentName") %>'></asp:TextBox>
                            </EditItemTemplate>
                            <ItemTemplate>
                                <asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl='<%# Eval("DocumentName", @"~\Files\{0}") %>'
                                    Text='<%# Eval("DocumentName") %>' Target="_blank"></asp:HyperLink>
                            </ItemTemplate>
                        </asp:TemplateField>
                        <asp:BoundField DataField="DateInput" HeaderText="Date Input" SortExpression="DateInput" />
                        <asp:BoundField DataField="Comments" HeaderText="Comments" SortExpression="Comments" />
                    </Columns>
                </asp:GridView>
                <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ClubSiteDB %>"
                    SelectCommand="SELECT * FROM [Documents] WHERE ([DocumentCategory] = @DocumentCategory) ORDER BY [DateInput] DESC">
                    <SelectParameters>
                        <asp:QueryStringParameter Name="DocumentCategory" QueryStringField="categoryid" Type="Int32" />
                    </SelectParameters>
                </asp:SqlDataSource>
            </p>
        </div> 
    </div>
</asp:Content>

4) And finally, here is files_admin.aspx:

<%@ Page Language="VB" MasterPageFile="~/Default.master" Title="Files Management" MaintainScrollPositionOnPostback="true" %>
<%@ Import Namespace="System.IO" %>

<script runat="server">

    Protected Sub GridView2_RowDeleting(ByVal sender As Object, ByVal e As GridViewDeleteEventArgs)
        'Since documents are not stored in the database, they must be deleted from
        'the filesystem when the user clicks the delete button in the gridview
        File.Delete(Server.MapPath("~\files\") & e.Values(0).ToString())
    End Sub

    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        SqlDataSource1.Insert()
        TextBox1.Text = ""
        CheckBox1.Checked = False
    End Sub

    Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        If FileUpload1.HasFile Then
            Try
                FileUpload1.SaveAs(Server.MapPath("~\files\" & FileUpload1.FileName.ToString()))
                Label1.Text = "<b>File Successfully Uploaded!</b><br />"
               
                SqlDataSource2.DeleteParameters.Add("DeleteDocumentName", FileUpload1.FileName.ToString())
                SqlDataSource2.Delete()
                             
                SqlDataSource2.InsertParameters.Add("DocumentName", FileUpload1.FileName.ToString())
                SqlDataSource2.InsertParameters.Add("DateInput", DateTime.Now.ToString())
               
                SqlDataSource2.Insert()
            Catch ex As Exception
                Label1.Text = "ERROR IN UPLOADING: " & ex.Message.ToString()
            Finally
                TextBox2.Text = ""
            End Try
        End If
    End Sub
</script>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div id="body">
        <div class="fullwidth">
            <h2>File Category System</h2>
            <p>
                <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
                AutoGenerateColumns="False" DataKeyNames="CategoryID" DataSourceID="SqlDataSource1"
                EmptyDataText="There are no categories present." Width="100%">
                    <Columns>
                        <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
                        <asp:BoundField DataField="CategoryID" HeaderText="CategoryID" InsertVisible="False"
                            ReadOnly="True" SortExpression="CategoryID" />
                        <asp:BoundField DataField="CategoryName" HeaderText="CategoryName" SortExpression="CategoryName" />
                        <asp:CheckBoxField DataField="IsPublic" HeaderText="IsPublic" SortExpression="IsPublic" />
                    </Columns>
                </asp:GridView>
                <p>
                    <strong><span style='text-decoration: underline'>Add a New Category</span></strong></p>
            <p>
                    Category Name:<br />
                    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></p>
            <p>
                <asp:CheckBox ID="CheckBox1" runat="server" Text="Check if category is public" /></p>
            <p>
                <asp:Button ID="Button1" runat="server" Text="Add Category" OnClick="Button1_Click" />
                <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ClubSiteDB %>"
                DeleteCommand="DELETE FROM [DocumentCategories] WHERE [CategoryID] = @CategoryID"
                InsertCommand="INSERT INTO [DocumentCategories] ([CategoryName], [IsPublic]) VALUES (@CategoryName, @IsPublic)"
                SelectCommand="SELECT * FROM [DocumentCategories]"
                UpdateCommand="UPDATE [DocumentCategories] SET [CategoryName] = @CategoryName, [IsPublic] = @IsPublic WHERE [CategoryID] = @CategoryID">
                    <DeleteParameters>
                        <asp:Parameter Name="CategoryID" Type="Int32" />
                    </DeleteParameters>
                    <UpdateParameters>
                        <asp:Parameter Name="CategoryName" Type="String" />
                        <asp:Parameter Name="IsPublic" Type="Boolean" />
                        <asp:Parameter Name="CategoryID" Type="Int32" />
                    </UpdateParameters>
                    <InsertParameters>
                        <asp:ControlParameter Name="CategoryName" Type="String" ControlID="TextBox1" />
                        <asp:ControlParameter Name="IsPublic" Type="Boolean" ControlID="CheckBox1" />
                    </InsertParameters>
                </asp:SqlDataSource>
            </p>           
        </div>
       
        <div class="fullwidth">
            <h2>File Management System</h2>
            <p>
                <asp:GridView ID="GridView2" runat="server" AllowPaging="True" AllowSorting="True"
                    AutoGenerateColumns="False" DataKeyNames="DocumentID" DataSourceID="SqlDataSource2"
                    OnRowDeleting="GridView2_RowDeleting" EmptyDataText="There are no files present." Width="100%">
                    <Columns>
                        <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
                        <asp:BoundField DataField="DocumentID" HeaderText="DocumentID" InsertVisible="False"
                            ReadOnly="True" SortExpression="DocumentID" />
                        <asp:BoundField DataField="DocumentName" HeaderText="DocumentName" SortExpression="DocumentName" ReadOnly="True" />
                        <asp:BoundField DataField="DateInput" HeaderText="DateInput" SortExpression="DateInput" />
                        <asp:BoundField DataField="Comments" HeaderText="Comments" SortExpression="Comments" />
                        <asp:BoundField DataField="DocumentCategory" HeaderText="DocumentCategory" SortExpression="DocumentCategory" />
                        <asp:CheckBoxField DataField="TopDoc" HeaderText="TopDoc" SortExpression="TopDoc" />
                    </Columns>
                </asp:GridView>
                &nbsp;</p>
            <p>
                <strong><span style='text-decoration: underline'>Add a New File</span></strong></p>
            <p>
                Select Category:<br />
                <asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource1"
                    DataTextField="CategoryName" DataValueField="CategoryID">
                </asp:DropDownList></p>
            <p>
                File Comments:<br />
                <asp:TextBox ID="TextBox2" runat="server" Width="350px"></asp:TextBox></p>
            <p>
                Show up on Top-Document List?
                <asp:RadioButtonList ID="RadioButtonList1" runat="server">
                    <asp:ListItem Value="true">Yes</asp:ListItem>
                    <asp:ListItem Selected="True" Value="false">No</asp:ListItem>
                </asp:RadioButtonList></p>
            <p>
                File to Upload:<br />
                <asp:FileUpload ID="FileUpload1" runat="server" Width="350px" /></p>
            <p>
                <asp:Button ID="Button2" runat="server" Text="Upload File" OnClick="Button2_Click" />&nbsp;</p>
            <p>
                <asp:Label ID="Label1" runat="server"></asp:Label><br />
                <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ClubSiteDB %>"
                    DeleteCommand="DELETE FROM [Documents] WHERE [DocumentID] = @DocumentID"
                    InsertCommand="INSERT INTO [Documents] ([DocumentName], [DateInput], [Comments], [DocumentCategory], [TopDoc]) VALUES (@DocumentName, @DateInput, @Comments, @DocumentCategory, @TopDoc)"
                    SelectCommand="SELECT * FROM [Documents]"
                    UpdateCommand="UPDATE [Documents] SET [DocumentName] = @DocumentName, [DateInput] = @DateInput, [Comments] = @Comments, [DocumentCategory] = @DocumentCategory, [TopDoc] = @TopDoc WHERE [DocumentID] = @DocumentID">
                    <DeleteParameters>
                        <asp:Parameter Name="DocumentID" Type="Int32" />
                    </DeleteParameters>
                    <UpdateParameters>
                        <asp:Parameter Name="DocumentName" Type="String" />
                        <asp:Parameter Name="DateInput" Type="DateTime" />
                        <asp:Parameter Name="Comments" Type="String" />
                        <asp:Parameter Name="DocumentCategory" Type="Int32" />
                        <asp:Parameter Name="TopDoc" Type="Boolean" />
                        <asp:Parameter Name="DocumentID" Type="Int32" />
                    </UpdateParameters>
                    <InsertParameters>
                        <asp:ControlParameter Name="Comments" Type="String" ControlID="TextBox2" />
                        <asp:ControlParameter Name="DocumentCategory" Type="Int32" ControlID="DropDownList1" PropertyName="SelectedValue" />
                        <asp:ControlParameter Name="TopDoc" Type="Boolean" ControlID="RadioButtonList1" PropertyName="SelectedValue" />
                    </InsertParameters>
                </asp:SqlDataSource>
                &nbsp;</p>
        </div> 
            
    </div>
</asp:Content>

13 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Special Edition Using Microsoft FrontPage 2002 Authors: Neil Randall, Dennis Jones, Pages: 914, Published: 2001
PHP & MySQL Web Development All-in-One Desk Reference For Dummies: All-in-one Desk Reference for Dummies. Authors: Janet Valade, Tricia Ballad, Bill Ballad, Pages: 646, Published: 2007
The Complete Internet Companion for Librarians: remote login Simple mail transfer protocol (SMTP) Gopher Wide area information servers (WAIS) World-wide web Archie Resource discovery with electronic mail Directory services Listserv discussion lists Campus-wide information systems (CWIS) Online library catalogs Electronic publishing Information systems and gateway services Free-nets Usenet news Computer bulletin boards The librarian's role Implementing internet services in-house Reference services Authors: Allen C. Benson, Pages: 405, Published: 1995
Building Online Communities with Drupal, PhpBB, and WordPress Authors: Robert T. Douglass, Mike Little, Jared W. Smith, Pages: 530, Published: 2006
A practical guide to Unix for Mac OS X users Authors: Mark G. Sobell, Peter Seebach, Pages: 999, Published: 2006
Problem Solving, Abstraction, and Design Using C++ Authors: Frank L. Friedman, Elliot B. Koffman, Pages: 800, Published: 2000
Upgrading and Repairing Laptops Authors: Scott Mueller, Pages: 912, Published: 2004
Computer Security Handbook Authors: Seymour Bosworth, M. E. Kabay, Pages: 1224, Published: 2002
Beginning Visual C# 2005 Authors: Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White, Pages: 1062, Published: 2006

Web:
Karen's Directory Printer Karen's Directory Printer can print the name of every file on a drive, ... to hide (not save or display) Hidden, System and/or Read-Only files and folders. ...
Read probe intensities from Affymetrix CEL files - MATLAB CDF library file stored at D:\Affymetrix\LibFiles\HGGenome, and that your current directory points to a location containing CEL files associated with this ...
Apache Directory - LDAP and Kerberos, entirely in Java You can download Apache Directory Studio 1.3.0 RC2 as a standalone RCP ... It's now capable to read/write the server.xml file of an Apache DS 1.5.0, 1.5.1, ...
DOS Command: DIR Purpose: Displays directory of files and directories stored on disk. ... When you use the DIR command, it will display all files that match the path and ...
CSS: Using Home Directory Files Remotely - College of Engineering ... For information on using WS_FTP, read the CSS WS_FTP e-tude. ... Edit locally a file stored on your home directory (H:). Use WS_FTP to move the file from ...
CTAN: directory: /tex-archive/support/xtexshell The default variables for XTeXShell are stored in the setup files. ... If word ends with a "_", XTeX will read and display the bitmap file "word" in the ...
8a. Linking to Local Files If all went well, the link in the sentence describing the blown-down trees should now call up the graphic file stored in the pictures sub-directory/folder. ...
FREE SOFTWARE FOR DOS — File Managers – 1 Config file stored in root dirctory. Splash screen on startup (easily dismissed .... Features include directory tree display, file extension association, ...
copy a file from one dir to another by date Imagine a large dresser containing drawers in which files or other drawers are stored. A directory can in fact contain: files other ...
eSupport - storage of attachments - database vs files directory ... My assumption is files directory may be the better way to go. ... the best because if 1000 users are downloading a file, the hard drive will read 1000 times ...

Videos:
Zero Configuration networking with Bonjour Google TechTalks November 2, 2005 Dr. Stuart Cheshire, Apple Computer http://www.stuartcheshire.org/ ABSTRACT The desirability of making IP networ...




Search This Site:










awkward situation

visual source safe with .net

revert back to original string from hashed string

problem when asp.net site virtual directory files are copied to e:

code behind best practice

how to handle the special characters script error.

how to install a changed module on a live production server

a working example of classified kit is here.

how can i have menu in a straight line using web.sitemap file

links in module footer

right aligment of dynamicmenu (submenu) of horizontal menu

iis port problem in vs 2005

centering css containers in content pane

multiblog

how to create an asp.net web app

pfx

dnn 3.08 build issue

creating dnn 2.0 private assembly module tutorial - now available

external tools in vwd

auto login to child portal after logging into main portal...

built in server not starting in february ctp

how to remove the version 2.1.2

is this new or something i missed in vs2003

problems with document module

downloading skins

i need help compiling and creating the pa for my mini-app

synchronize database and file system times out

unable to view more than the first page of user accounts

debugging - integers displaying strangely

role based authorization

 
All Times Are GMT