Sunday, November 25, 2007
Using Output Parameters with a Stored Procedure
USE IT A Command object contains a collection of Parameter objects. These parameters are values that the stored procedure passes back to you after the call is complete. This ASP.NET page calls a stored procedure that returns values. The values returned are the total number of records in the Employees table and the name of the employee who is paid the most.
The stored procedure has this definition:
CREATE PROCEDURE Tablelnfo
@RecordCount integer OUTPUT,
@TopSalaryName varchar(100) OUTPUT
AS
Select @RecordCount = Count(EmpID) From Employees Select @TopSalaryName = LastName + ' + FirstName
From Employees Where Salary = (Select Max(Salary) From Employees)
Totice that the two parameters are declared as output parameters. In the first query, one of the put parameters is set to the record count. In the second query the other parameter is set to the name he employee who is paid the most.
That stored procedure is called when the ASP.NET page loads:
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
[n that procedure you will need a Connection object:
Dim DBConn as SQLConnection that points to the SQL Server database:
DBConn = New SQLConnection("server=localhost;" _
& "Initial Catalog=TT;"
& "User Id=sa;"
& "Password=yourpassword;")
You will need a Command object: Dim DBSP As New SQLCommand
You also will need two Parameter objects. The first has its name match the first parameter in the stored procedure and is of the same data type:
Dim parRecordCount as New _ SqlParameter("@RecordCount", SqlDbT e.Int)
The second parameter is set to the name and type of the second output parameter in the stored procedure:
Dim parTopSalaryName as New _ SqlParameter("@TopSalaryName", SqlDbType.VarChar, 100)
Both parameters are set to output parameters using the Direction property:
parRecordCount.Direction = ParameterDirection.Output parTopSalaryName.Direction = ParameterDirection.Output
Next, those parameters are added to the Parameters collection of the Command object:
DBSP.Parameters.Add(parRecordCount) DBSP.Parameters.Add(parTopSalaryName)
The CommandText property of the Command object is set to the name of the stored procedure: DBSP.CommandText = "TableInfo" and the command type is set to stored procedure: DBSP.CommandType = CommandType.StoredProcedure
The Command object will connect to the database through the Connection object:
DBSP.Connection = DBConn DBSP.Connection.Open
The stored procedure can then be executed: DBSP.ExecuteNonQuery()
After the call to the stored procedure you can use the values in the output parameters through the Value property:
lblMessage.Text = "Total Employees: "
& parRecordCount.Value _
& "
Highest Paid: "
& parTopSalaryName.Value
Visitors would then see through the Label control the total number of employees and the highest salary amount.
Sending Data to a Stored Procedure Through Input Parameters
USE IT The ASP.NET page created for this technique allows visitors to add a record to the Employees table. Instead of using an Insert statement in the ASP.NET code, a stored procedure is called to add the record.
That stored procedure has this definition:
CREATE PROCE @LastName va
DURE AddEmployee rchar(50),
@FirstName varchar(50), @BirthDate datetime, @Salary money,
@EmailAddress varchar(50) AS
Insert Into Employees (LastName, FirstName, BirthDate,
Salary, EmailAddress) values
@LastName, @FirstName, @BirthDate,
@Salary, @EmailAddress) GO
Notice that the stored procedure has five input parameters. Those parameters are used in the Insert statement in the stored procedure.
On the ASP.NET page, visitors enter the values for the new employee record into TextBox control. When they click the Button control, this procedure fires, adding the new record by calling the stored procedure:
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
Within the procedure, you need these data objects:
Dim DBConn as SQLConnection Dim DBAdd As New SQLCommand
You need to start by connecting to the SQL Server database:
DBConn = New SQLConnection("server=localhost;"
& "Initial Catalog=TT;" _
& "User Id=sa;" _
& "Password=yourpassword;")
Next, you place the SQL syntax into the Command object that calls the stored procedure:
DBAdd.CommandText = "Exec AddEmployee " _
& "'" & Replace(txtLastName.Text, "'", """) _
&
& ''" & Replace(txtFirstName.Text, "'", """)
&
& "'" & Replace(txtBirthDate.Text, "'", """)
& HI,
& Replace(txtSalary.Text, "'", """) & ", "
& "'" & Replace(txtEmailAddress.Text, "'", """)
Notice that the call passes in five parameters, the values for the new record. A comma separate each parameter.
The Command object will connect to the database through the Connection object:
kdd.Connection = DBConn kdd.Connection.Open
and the stored procedure can be executed:
kdd.ExecuteNonQuery()
Saturday, November 24, 2007
Retrieving Data from a Stored Procedure
Stored procedures frequently return data from a database. They can return single values, tables joined together, or all the records from a single value, and much more. You can call stored procedures that return data from your ASP.NET pages. This technique shows you how to do that..
USE IT The page defined for this technique displays in a DataGrid control all the employees who have a birthday in the current month. The DataGrid has this definition:
asp: datagrid
id="dgEmps"
runat="server" autogeneratecolumns="True"
/
Tuesday, November 20, 2007
Calling a Stored Procedure at ASP.net
In SQL Server you create stored procedures that take some action or manipulate data in some way in your database. Once you create a stored procedure it becomes a compiled efficient set of code. You can call stored procedures from your ASP.NET pages. This tip shows you how to call a stored procedure that does not have any parameters nor does it return any value.
USE IT This ASP.NET page calls a stored procedure that adds a record to the Employees table. The stored procedure has this syntax:
CREATE PROCEDURE AddGarbageRecord AS
Insert Into Employees (LastName, FirstName, BirthDate, Salary, EmailAddress) values ('Smith', 'Jane', '12/17/1947', 55000, 'janegna.com')
GO and place the SQL text that calls the stored procedure into the Command object. Notice that the call consists of the name of the stored procedure preceded by the Exec keyword:
DBSP.CommandText = "Exec AddGarbageRecord"
The Command will connect to the database through the Connection object:
And the stored procedure is executed:
DBSP.ExecuteNonQuery()
lblMessage.Text = "Stored procedure completed."
Internet Blogosphere
Blog Archive
Blogosphere
Labels
- network (35)
- information (23)
- system (23)
- data (21)
- server (20)
- customers (18)
- online (16)
- user (16)
- users (16)
- internet (15)
- project (14)
- security (14)
- systems (13)
- product (12)
- windows (12)
- customer (11)
- protocol (11)
- object (9)
- site (9)
- web (9)
- -mail (8)
- companies (8)
- company (8)
- file (8)
- files (8)
- used (8)
- access (7)
- computer (7)
- content (7)
- database (7)
- products (7)
- usability (7)
- account (6)
- address (6)
- nt (6)
- password (6)
- program (6)
- protocols (6)
- software (6)
- unix (6)
- asp (5)
- connection (5)
- evaluation (5)
- events (5)
- operating (5)
- operating systems (5)
- router (5)
- servers (5)
- sql server (5)
- stored (5)
- team (5)
- traffic (5)
- windows nt (5)
- windows server (5)
- -newsletter (4)
- active directory (4)
- bank (4)
- cent (4)
- client (4)
- command object (4)
- design (4)
- environment (4)
- example (4)
- market (4)
- monitor (4)
- name (4)
- page (4)
- parameters (4)
- procedure (4)
- remote (4)
- routers (4)
- sales (4)
- service (4)
- shopping (4)
- space (4)
- sql (4)
- sql server database (4)
- store (4)
- stored procedure (4)
- usability engineers (4)
- web site (4)
- website (4)
- accounts (3)
- analyzer (3)
- asp net (3)
- asp net page (3)
- brand (3)
- business (3)
- button (3)
- command (3)
- computers (3)
- connect (3)
- detail (3)
- disk (3)
- employees (3)
- engineer (3)
- engineers (3)
- field is used (3)
- files or directories (3)
- firewall (3)
- group (3)
- ip (3)
- key (3)
- lan (3)
- log (3)
- marketing (3)
- message (3)
- newsletter (3)
- operating system (3)
- organization (3)
- passwords (3)
- printer (3)
- privileges (3)
- process (3)
- public key (3)
- record (3)
- services (3)
- shopping cart (3)
- time (3)
- training (3)
- usability engineer (3)
- using (3)
- virtual (3)
- windows xp (3)
- world (3)
- -mail address (2)
- ASP.Net (2)
- access to resources (2)
- address space (2)
- addresses (2)
- administrator (2)
- already (2)
- articles (2)
- asuk (2)
- bandwidth (2)
- body (2)
- bridges (2)
- buffer (2)
- cables (2)
- card (2)
- cards (2)
- cart (2)
- catalog (2)
- catalogs (2)
- category (2)
- characters (2)
- com (2)
- configuration information (2)
- connection object (2)
- consumers (2)
- content on web (2)
- corporate (2)
- dbsp (2)
- delete (2)
- development (2)
- device (2)
- devices (2)
- dfs (2)
- digital (2)
- dim (2)
- directory (2)
- email (2)
- encryption (2)
- features (2)
- file share (2)
- file system (2)
- files and directories (2)
- ftp (2)
- future (2)
- host (2)
- hosts (2)
- however (2)
- include (2)
- industry (2)
- inside your network (2)
- interface (2)
- internal (2)
- internet security (2)
- intranet (2)
- ipp (2)
- items (2)
- loyalty (2)
- media (2)
- million (2)
- monitoring (2)
- net (2)
- netware (2)
- network address (2)
- network segments (2)
- network traffic (2)
- online store (2)
- packet (2)
- pages (2)
- performance (2)
- port (2)
- power (2)
- printing (2)
- privacy (2)
- programs (2)
- provide (2)
- public (2)
- purchase (2)
- records (2)
- replace (2)
- requirements (2)
- research (2)
- resources (2)
- retail (2)
- root (2)
- rules (2)
- rural net (2)
- secure (2)
- security policy (2)
- segment (2)
- share (2)
- smb (2)
- solution (2)
- someone (2)
- source (2)
- sql server table (2)
- standard (2)
- statistics (2)
- subscribers (2)
- table (2)
- techniques (2)
- telnet service (2)
- test (2)
- text (2)
- uk (2)
- value (2)
- value of zero (2)
- vpn (2)
- web design (2)
- www (2)
- xp (2)
- -mail addresses (1)
- -mail newsletter (1)
- -newsletters (1)
- 100base (1)
- 10base (1)
- Algorithms (1)
- Cryptosystem (1)
- ac dc converters (1)
- access rights (1)
- access the file (1)
- access this computer (1)
- access token (1)
- access tokens (1)
- accessed (1)
- acls (1)
- acquiring new customers (1)
- across systems (1)
- act (1)
- act on behalf (1)
- action menu (1)
- actions (1)
- active directory database (1)
- active directory domain (1)
- addition (1)
- additional headers (1)
- addressing (1)
- administrative control (1)
- adobe (1)
- advertisements (1)
- affect the security (1)
- alarms (1)
- alarms and events (1)
- algorithm (1)
- all (1)
- along the network (1)
- analysis (1)
- analyzing current buying (1)
- anonymous user (1)
- antivirus (1)
- antivirus program (1)
- approach (1)
- archive (1)
- areas (1)
- article (1)
- article rewriter (1)
- asp page using (1)
- associated (1)
- attack (1)
- attributes (1)
- audience (1)
- audit file (1)
- auditcon (1)
- auditcon utility (1)
- authentication (1)
- authority (1)
- automatic (1)
- available (1)
- avatars (1)
- b2b (1)
- back (1)
- background (1)
- background processes (1)
- backup (1)
- backup operators group (1)
- badarticle article rewriter (1)
- bank of modems (1)
- banking (1)
- banks (1)
- banner (1)
- banner advertisements (1)
- barnes and noble (1)
- based (1)
- baseline (1)
- baseline data (1)
- batch job (1)
- benchmarking (1)
- benefits (1)
- best (1)
- better (1)
- bit address (1)
- bit address used (1)
- bit error (1)
- bit error rate (1)
- bit field (1)
- bits (1)
- block (1)
- blocks of data (1)
- box is displayed (1)
- branches (1)
- brands (1)
- bricks and mortar (1)
- broadcast (1)
- built-in groups (1)
- bundle (1)
- bundles (1)
- burst mode (1)
- business case (1)
- business-to-business (1)
- button bar (1)
- buyers and suppliers (1)
- bytes (1)
- ca (1)
- cable (1)
- cable testers (1)
- cabling (1)
- capability (1)
- capture (1)
- captured (1)
- case (1)
- cases (1)
- cash register ring (1)
- catalog firms (1)
- catalog industry (1)
- catalogers (1)
- cent of customers (1)
- cent of gdp (1)
- certain (1)
- certificate (1)
- certificate server (1)
- certificate servers (1)
- certificates (1)
- certroot cer ss (1)
- channel blurring (1)
- check box (1)
- choices (1)
- cifs (1)
- ciphertext (1)
- class (1)
- click (1)
- click next (1)
- click rate (1)
- client and server (1)
- client has exclusive (1)
- cmds (1)
- code (1)
- code signing certificate (1)
- coding (1)
- cognitive (1)
- collaborative virtual environment (1)
- commands (1)
- communications (1)
- competitive (1)
- competitive intelligence (1)
- competitive intelligence professionals (1)
- completion code (1)
- completion code field (1)
- computer options button (1)
- computer systems (1)
- conduct the evaluation (1)
- connect to nfs (1)
- connecting (1)
- constraints (1)
- consulting company (1)
- consumer (1)
- content providers (1)
- control (1)
- converts the boundary (1)
- copy (1)
- copyright (1)
- corporate communications (1)
- corporate intranet (1)
- cost (1)
- costs (1)
- create (1)
- create network documentation (1)
- create private key (1)
- creative (1)
- credit (1)
- credit card (1)
- credit card transactions (1)
- crm (1)
- current buying behaviors (1)
- current shopping (1)
- customer interface (1)
- customer service (1)
- customer will receive (1)
- customers and prospects (1)
- customized (1)
- data files (1)
- data from multiple (1)
- data link control (1)
- data protection (1)
- data protection act (1)
- data source setup (1)
- data source structure (1)
- data submission developer (1)
- data submission process (1)
- databases (1)
- datagrid (1)
- dataprotection gov uk (1)
- dataset (1)
- dataset table (1)
- dataset table object (1)
- days (1)
- dbadd (1)
- dbconn as sqlconnection (1)
- dbconn new sqlconnection (1)
- dbdelete commandtext delete (1)
- dbupdate (1)
- debug and test (1)
- debugging (1)
- decision (1)
- decisions (1)
- decrypt the data (1)
- dedicated (1)
- dedicated server (1)
- dedicated server market (1)
- defined in rfc (1)
- delete from employees (1)
- delivering images via (1)
- delivery (1)
- demo days (1)
- demo days online (1)
- deny log (1)
- des (1)
- describe the ip (1)
- design and evaluation (1)
- destination options header (1)
- detail pages (1)
- detailed (1)
- determining the submission (1)
- developer sample form (1)
- development team (1)
- dfs root (1)
- dictionary (1)
- digital certificates (1)
- digital marketing (1)
- direct (1)
- direct marketing (1)
- directory domain (1)
- directory domain controller (1)
- disable (1)
- discover (1)
- disk space (1)
- distributed file system (1)
- dlc (1)
- document (1)
- does (1)
- does the artefact (1)
- does the instrument (1)
- does the software (1)
- domain (1)
- domain admins group (1)
- domain controller (1)
- domain controller just (1)
- domain local (1)
- domain local group (1)
- domain local groups (1)
- domain local scope (1)
- domain tree (1)
- domain users group (1)
- down (1)
- down the system (1)
- drive letter (1)
- dropdownlist control (1)
- dspagedata (1)
- dts (1)
- during (1)
- during the visit (1)
- echo request (1)
- echo request packets (1)
- edition for netware (1)
- edition of windows (1)
- electronic trading exchange (1)
- emails (1)
- encoding and transport (1)
- encrypt the data (1)
- encrypted (1)
- encryption algorithm (1)
- end (1)
- enforce (1)
- enter the name (1)
- entries (1)
- entry (1)
- equipment (1)
- error rate (1)
- errors (1)
- et al (1)
- etc (1)
- ethernet (1)
- ethical (1)
- eu (1)
- event (1)
- event log (1)
- event record (1)
- event viewer (1)
- exclusive (1)
- exclusive access (1)
- exclusive lock (1)
- exe utility included (1)
- execute (1)
- existing (1)
- existing domain tree (1)
- existing secondary data (1)
- experience (1)
- expert (1)
- expert reviews (1)
- expression that represents (1)
- extend the reach (1)
- failed logon (1)
- failed logon attempts (1)
- fat32 (1)
- features and benefits (1)
- fiction (1)
- file migration (1)
- file migration utility (1)
- file or directory (1)
- file systems (1)
- filter (1)
- firms (1)
- first active directory (1)
- first failure field (1)
- fixed the problem (1)
- frames (1)
- frequency of purchases (1)
- frequently (1)
- ftp client (1)
- ftp server (1)
- fully trusted (1)
- functions (1)
- gaining the primary (1)
- gives remote users (1)
- gives the capability (1)
- granted access (1)
- granted this privilege (1)
- graphics (1)
- group can perform (1)
- group have view-only (1)
- group is automatically (1)
- group of users (1)
- groups (1)
- groups of users (1)
- guess (1)
- hacker (1)
- hardware (1)
- hardware analyzers (1)
- hardware lan analyzer (1)
- header (1)
- header fields (1)
- header information (1)
- header is used (1)
- header type encountered (1)
- heritage (1)
- home (1)
- home discount centers (1)
- home or office (1)
- home page (1)
- home pages (1)
- hubs (1)
- icmp echo (1)
- icmp echo reply (1)
- icmp echo request (1)
- id (1)
- identify the group (1)
- ids (1)
- ignoring text nodes (1)
- ii oplock (1)
- iis (1)
- images via networks (1)
- impersonation (1)
- import other namespaces (1)
- imports system (1)
- imports system data (1)
- incident (1)
- includes an understanding (1)
- increase (1)
- increased sales (1)
- indexed by search (1)
- inetpub wwwroot tt (1)
- infiltrate your network (1)
- infopath (1)
- initial catalog tt (1)
- initial ipv6 header (1)
- install (1)
- intelligence (1)
- intruder (1)
- intrusion detection (1)
- ip address (1)
- ip addresses (1)
- ip configuration information (1)
- ip datagram (1)
- ipsec (1)
- ipsec protocols (1)
- ipv6 header (1)
- job (1)
- join an existing (1)
- just (1)
- key is used (1)
- key lengths (1)
- keys (1)
- kill the network (1)
- korn shell commands (1)
- l2tp (1)
- lan analyzer (1)
- lan analyzer allows (1)
- language (1)
- larger (1)
- layer (1)
- legislation (1)
- level (1)
- level ii (1)
- level ii oplock (1)
- level of detail (1)
- level the performance (1)
- levels of security (1)
- likely to purchase (1)
- limitations (1)
- line (1)
- line printer (1)
- link (1)
- links (1)
- load and unload (1)
- local (1)
- local file system (1)
- local file systems (1)
- local scope group (1)
- locate information (1)
- locate information quickly (1)
- locate the file (1)
- location (1)
- locations (1)
- log file (1)
- log on locally (1)
- log on tab (1)
- logon attempts (1)
- logon rights (1)
- looking (1)
- loop (1)
- lower (1)
- lt auditor (1)
- mac addresses (1)
- macro (1)
- mail (1)
- main (1)
- main body (1)
- management (1)
- manager for domains (1)
- manifest (1)
- market share (1)
- marketplaces (1)
- marks and spencer (1)
- master nis (1)
- master nis server (1)
- measure (1)
- measure concerns (1)
- measure concerns included (1)
- message in encrypted (1)
- message is used (1)
- message type (1)
- method (1)
- mib (1)
- microsoft (1)
- microsoft jet oledb (1)
- microsoft office infopath (1)
- migration (1)
- migration plan (1)
- migration process (1)
- minimum password (1)
- mobile (1)
- model (1)
- model and semantics (1)
- modem and router (1)
- modems (1)
- modifications (1)
- month (1)
- mounts the file (1)
- msdn subscription (1)
- museum (1)
- name value value (1)
- namespaces (1)
- narratives (1)
- needs (1)
- net framework sdk (1)
- net use server (1)
- network adapters (1)
- network bandwidth (1)
- network connection (1)
- network monitor (1)
- network path (1)
- network protocol (1)
- networks (1)
- next bench (1)
- next header field (1)
- next to receive (1)
- nfs file (1)
- nfs file system (1)
- nfs file systems (1)
- nis (1)
- nis server (1)
- node is returned (1)
- nodes (1)
- notify the user (1)
- novell (1)
- novell audit (1)
- ntcs (1)
- ntfs (1)
- ntfs file system (1)
- object might return (1)
- objectives (1)
- offer (1)
- offers for desktop (1)
- offline (1)
- one-time pad (1)
- online and offline (1)
- online customer needs (1)
- online store design (1)
- online stores (1)
- operate at layer (1)
- operation attributes (1)
- operations (1)
- option (1)
- options type field (1)
- order (1)
- order by (1)
- organizational units (1)
- outcomes (1)
- output (1)
- output parameters (1)
- own secret key (1)
- packet filter (1)
- packet is carrying (1)
- packets (1)
- palais des papes (1)
- paper copies (1)
- paper documentation (1)
- parameter (1)
- parrecordcount (1)
- partition (1)
- password file (1)
- past the end (1)
- payload (1)
- people (1)
- percentage (1)
- perform configuration tasks (1)
- performance measure (1)
- performance measure concerns (1)
- period (1)
- permissions for exported (1)
- personal (1)
- personal information (1)
- phone line surges (1)
- physical (1)
- physical printer (1)
- plan (1)
- policy (1)
- policy that users (1)
- ports (1)
- potential (1)
- power strip (1)
- pptp (1)
- predefined groups (1)
- presence of operation (1)
- price comparison sites (1)
- prices (1)
- pricing (1)
- primary (1)
- principles and measurements (1)
- print job (1)
- print job object (1)
- printed (1)
- printer language (1)
- printer object (1)
- printers (1)
- printing protocol (1)
- privacy statement (1)
- privilege (1)
- privilege vector (1)
- problem (1)
- process each record (1)
- process that runs (1)
- process to act (1)
- processes (1)
- processors and spreadsheets (1)
- product detail (1)
- product detail page (1)
- product detail pages (1)
- product launch (1)
- professionals (1)
- program or script (1)
- programs and services (1)
- proj projectitems item (1)
- project constraints (1)
- project management (1)
- project management skills (1)
- project team (1)
- project team includes (1)
- prompt (1)
- proposition and branding (1)
- protect (1)
- protection (1)
- prototype (1)
- prototypes (1)
- providers (1)
- ps (1)
- public function gettiptable (1)
- publish your public (1)
- purchases (1)
- purchasing (1)
- query (1)
- ranging from windows (1)
- rate (1)
- reach its destination (1)
- reading (1)
- reality (1)
- receive the offer (1)
- recipient (1)
- recovery tab (1)
- redirectpage as string (1)
- regional (1)
- regional content providers (1)
- relationship (1)
- relationships (1)
- remote computer (1)
- remote file system (1)
- remote network monitoring (1)
- remote nfs file (1)
- remote scanners (1)
- replication (1)
- request (1)
- request being processed (1)
- request type (1)
- request type value (1)
- reserved (1)
- resource (1)
- response (1)
- restart computer options (1)
- restart the service (1)
- restore (1)
- results (1)
- retail store (1)
- retailers (1)
- return to shopping (1)
- returns an html (1)
- returns the value (1)
- rewrite (1)
- rewriter (1)
- rfc (1)
- rfcs (1)
- rights (1)
- rights and permissions (1)
- rmon (1)
- roles (1)
- root server (1)
- router to connect (1)
- rows (1)
- rsa (1)
- runs on systems (1)
- rural (1)
- samba (1)
- san antonio (1)
- search (1)
- search engines (1)
- search results (1)
- searches (1)
- secondary data source (1)
- secondary data sources (1)
- secret (1)
- security log (1)
- security log file (1)
- segments (1)
- sender as object (1)
- sending the (1)
- sentence (1)
- server database (1)
- server edition (1)
- server to provide (1)
- service connection (1)
- service fails (1)
- service has failed (1)
- service tipsdb mdb (1)
- settings (1)
- sha1 sky signature (1)
- shadow (1)
- shadow password (1)
- shadow password file (1)
- share name (1)
- shares (1)
- shelf (1)
- shop for products (1)
- shoppers (1)
- shows the process (1)
- signcode macro code (1)
- signs and patterns (1)
- simply (1)
- single-key (1)
- single-key encryption (1)
- sites (1)
- sklyarov (1)
- slave nis (1)
- slave nis server (1)
- smart (1)
- smart card (1)
- smart cards (1)
- smb message (1)
- smb message types (1)
- snmp (1)
- software development (1)
- software development team (1)
- software lan (1)
- software lan analyzer (1)
- solutionname (1)
- special (1)
- specialty (1)
- specialty catalogs (1)
- specified node dependencies (1)
- specified node note (1)
- staff (1)
- stalker (1)
- stalker and cmds (1)
- stamps (1)
- standard windows (1)
- star topology (1)
- state (1)
- statement of origination (1)
- station (1)
- statistical (1)
- statistical data (1)
- step (1)
- stores (1)
- stories (1)
- submission developer sample (1)
- succeed at digital (1)
- successful website (1)
- support (1)
- supporter of usability (1)
- surge suppressor (1)
- switch (1)
- synonyms (1)
- synonyms and sentence (1)
- system for delivering (1)
- system for local (1)
- table object (1)
- table or query (1)
- tables or queries (1)
- tasks (1)
- tcp ip (1)
- tcp ip printing (1)
- team member (1)
- telnet (1)
- telnet server (1)
- template (1)
- template xml (1)
- temporary buffer (1)
- terminal services (1)
- tesco (1)
- tesco com (1)
- testers (1)
- testing (1)
- text nodes (1)
- therefore (1)
- three (1)
- throughout the network (1)
- tiptitle from tips (1)
- token (1)
- token-ring (1)
- tool (1)
- top (1)
- track (1)
- tracking (1)
- trainees (1)
- trainer (1)
- trainers (1)
- training and communications (1)
- transaction (1)
- transaction object (1)
- transactions (1)
- transmitting and receiving (1)
- transport and accommodation (1)
- tree (1)
- tree or forest (1)
- trend (1)
- tripwire (1)
- tv (1)
- tv tuner card (1)
- txt (1)
- type is used (1)
- type of equipment (1)
- type of lock (1)
- type the following (1)
- types of groups (1)
- underlying xml document (1)
- understanding (1)
- unique (1)
- unique click (1)
- unique click rate (1)
- university of denver (1)
- unix and nt (1)
- unix nfs file (1)
- unix systems (1)
- unload device drivers (1)
- unrecognized next header (1)
- update (1)
- update query (1)
- upgrade (1)
- upgrade the pdc (1)
- ups (1)
- us (1)
- usability engineering principles (1)
- used to access (1)
- used to describe (1)
- used to encrypt (1)
- used to grant (1)
- used to identify (1)
- used to mount (1)
- used to perform (1)
- used to specify (1)
- user accounts (1)
- user id sa (1)
- user interface (1)
- user to log (1)
- user- (1)
- username and password (1)
- users and resources (1)
- users folder (1)
- users members (1)
- using custom script (1)
- usr projectx docs (1)
- utilization (1)
- value proposition (1)
- value to assign (1)
- values (1)
- version (1)
- versions of windows (1)
- vertical (1)
- via networks using (1)
- via the web (1)
- video (1)
- virtual bundles (1)
- virus (1)
- visa (1)
- vision (1)
- visitors (1)
- visual designer (1)
- vr (1)
- wan (1)
- war (1)
- watching and asking (1)
- web browser (1)
- web service (1)
- webmethod public function (1)
- weeks (1)
- wildcards (1)
- window (1)
- window size (1)
- windows clients (1)
- windows domain (1)
- windows domain controller (1)
- windows file (1)
- windows file share (1)
- windows operating systems (1)
- windows xp offers (1)
- windows xp professional (1)
- wire (1)
- wireframe (1)
- wires for transmitting (1)
- wiring (1)
- within (1)
- within the branches (1)
- within the consulting (1)
- within the cve (1)
- within the project (1)
- wizard (1)
- word processors (1)
- words (1)
- written (1)
- www dataprotection gov (1)
- wwwroot tt c14 (1)
- xml (1)
- xmod (1)
- xsf and template (1)