Web site integration (c#)

Size: px
Start display at page:

Download "Web site integration (c#)"

Transcription

1 Web site integration (c#) Summary I need help with integration of a few components in our new website like forum, blog and wiki. These components are free, existing ones like, YetAnotherForum, NetBlogEngine and Screwturn wiki. We also need help with a registration and login process in our site and configure the forum, blog and wiki to use the same Membership model and users. I have an existing online database that I would like you to use for membership and installation. I need the solution as fast as possible. If you can give me the solution fast I will give you a bonus as well as an additional follow up project. After bidding is accepted I will provide you with site source and login details for database (SQL server 2005). Documentation I need documentation on: what files you have modified how I add new pages that require membership describe how the membership process is working, where everything is stored describe how to add objects to member session and retrieve information from session - in code describe how to add additional parameters in registration process that is later stored in database Requirements use existing ASP.NET site that uses.net 3.5 no warnings or errors add validations for all pages you create (if you need regexp validation) Steps 1. Register and login process Membership class and database You need to use the MemberShip class in.net. Members using the registration and login below will also be members in forum, blog and wiki - so same membership needs to be implemented. Membership is stored in database (not on file). Please store it in millimetrics

2 database. Additional information are stored in other tables according to instructions below. Roles and admin I need some different roles like: User (normal user). This user can view logged in content. Forum administrator. This user can alter the forum. Forum moderator. This user can moderate according to YetAnotherForum settings Blogger. This user can blog in BlogEngine WikiEditor. This user can add and edit. Site administrator. Is allowed to access the admin. I need a very simple admin (use UserAdmin.aspx) where I can search on a username and add/delete roles. Create a default admin user that can do everything. Create custom registration pages and steps The registration has 3 steps. The steps should be shown and highlighted in the Registration control. The registration control or code for registration should be added to Register.aspx page. I need a custom registration with the following steps: Step1: User enters username, password, . There shall also be a checkbox for the user to accept millimetrics Terms of Service and Privacy Policy. Add a CAPTCHA control here. User clicks register and if all fields are filled in and the username doesn't exist, you show a new page which says that an has been sent to user. If input error, a message should be displayed and the user have to re-enter the step 1 information. You send an to user so he can validate account. Step2: User clicks on link in so account is verified. This opens up step 2 in registration. Here, user fills in, Firstname, Lastname, a checkbox if "Is company". If checked, user needs to put company name there. The user must also select a ContactRole from the ContactRole table (not to be mixed up with membership roles). Create one row in Customer table. If possible, please store username/password in Contact table. One Customer can have many Contacts but the Contact is used when logging in. Add any columns that may be needed for Contact table. If input error, a message should be displayed and the user have to re-enter the step 2 information. Step3: Create a page for third step with just a link in it: "Add Application". Point to Applications.aspx. You need to add some handling if registration process is interupted. If link in is broken

3 etc. Create custom login page Create a custom login page (do not use the login control) with all normal fields for login. Link to Forgot password from this page. Create this page in Login.aspx. Add a link to "Register". When a user logs in you need to add some Variables to the session which I can access like: CustomerId (from Customer table). And all values from Contact table. Please let me know how I can access those values later (in documentation). Create custom password retrieval page Add a custom password (do not use existing control) retrieval (by ) to ForgotPassword.aspx When the user has responded to the link in the , the password shall be changed in the database and the user shall be automatically redirected to Login.aspx. Create a change password page User enters password and password confirmation, a new ChangePassword.aspx needs to be created. A matching enter shall send an to the user for verification of the password change and open a new UpdatePassword.aspx page. When the user has responded to the link in the , the password shall be changed in the database and the user shall automatically be logged out and redirected to Login.aspx. Add membership check to pages If user is not logged in you need to redirect to login page and store original url. When user has logged in you redirect page to original page. These pages need to be configured so that they require login: Analytics.aspx Applications.aspx ChangePassword.aspx UpdatePassword.aspx Login, register and logout buttons and links Please add Login, Register and Logout links to Top.aspx (so that they are visible on all pages). They should be one row above the logo or to the right of the logo and right-

4 centered. Logout link logs out the user and leads to Default.aspx. Logout link is only visible when logged in. Login link leads to login page. Login link is only visible when not logged in. Register is only visible when not logged in. Register link leads to Register.aspx. 2. Forum integration Download latest source Yet%20Another%20Forum.NET/Version% /YAF-v1.9.3-FINAL-SRC.zip/download Install it in millimetrics database. Add existing source to a folder called "forum" in the web project. I have also created "forum" folder in AppCode. Add forum control(s) to Forum.aspx in root folder. You may need to move settings to root web.config an alter settings so the forum works normally. Login integration You need to map the general login process (from step 1) to the Forum. When a user is created it should be able to access the forum with that user. You should remove login/forgot password from forum and instead link to general login/registration/forgot password. You need to solve how administration flag is set and store that in main Customer table as a bit. You may find more information about integration here: AspNetMembershipIntegration.ashx If any user information is updated in the forum you need to update the source table Customer and Contacts as well. Masterpage integration You need to make sure that the MasterPage of Forum.aspx works as expected after you have inserted the control: links and buttons work images and logos work gradient background work these need to work both in design and runtime mode stylesheet work This means that you may need to alter paths in StyleSheet css (which is located in the css folder) and referenced by Masterpage. When integrated it should look like something like this: Forum.aspx

5 3. Blog integration I have already installed, moved to the "blog" folder of the site, and checked so that everything is working. What I need help with is to move all controls of the blog to Blog.aspx in root folder (which uses masterpage). You need to make sure that logo, buttons, background works when you have moved the blog controls to this aspx file. Set the standard theme to the blog. Masterpage integration You need to make sure that the MasterPage of Blog.aspx works as expected after you have inserted the control: links and buttons work images and logos work gradient background work these need to work both in design and runtime mode stylesheet work This means that you may need to alter paths in StyleSheet css (which is located in the css folder) and referenced by Masterpage. Login integration You need to map membership to normal login/registration/forgot password (from step 1). Only administrators are allowed to login and blog. Here is a link with more information: BlogEngine-to-use-AspNET-Membership-Provider.aspx Point any login links to general login. If any user information is updated in the blog you need to update the source table Customer and Contacts as well. 4. Wiki integration Download latest version of Screwturn (2.0.37) here: Download.ashx Add existing source to "wiki" folder. Same as Forum integration, but put control(s) in Wiki.aspx in root folder. Login integration You need to map membership to normal login/registration/forgot password (from step1). There seem to be such a provider here (search for membership).

6 Only administrators are allowed to edit Wiki. Point any login links to general login. If any user information is updated in the wiki you need to update the source table Customer and Contacts as well. Masterpage integration You need to make sure that the MasterPage of Wiki.aspx works as expected after you have inserted the control: links and buttons work images and logos work gradient background work these need to work both in design and runtime mode stylesheet work This means that you may need to alter paths in StyleSheet css (which is located in the css folder) and referenced by Masterpage.

.NET Web Applications. Example Project Walk-Through

.NET Web Applications. Example Project Walk-Through .NET Web Applications Example Project Walk-Through Simple Blog Project Goals - Introduce.NET web application development concepts Explore the Visual Studio and ASP.NET web site building process Demonstrate

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

Joomla 2.5 Flexi Contact Component Configuration

Joomla 2.5 Flexi Contact Component Configuration Joomla 2.5 Flexi Contact Component Configuration Open Source Varsity For the configuration of Flexi Contact component in Joomla 2.5, you have to first login through the administrative panel of Joomla by

More information

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Last Update: 24 August 2017 1 Requesting an Account This section highlights the steps that are required

More information

AREA 3 WRITING PROJECT

AREA 3 WRITING PROJECT Edublogs (WordPress) An Introductory Manual Gail Desler (with input from many others) AREA 3 WRITING PROJECT Last updated March 26, 2007 Table of Contents Getting Started... 3 Viewing Your Blog... 5 Changing

More information

WDD Fall 2016Group 4 Project Report

WDD Fall 2016Group 4 Project Report WDD 5633-2 Fall 2016Group 4 Project Report A Web Database Application on Loan Service System Devi Sai Geetha Alapati #7 Mohan Krishna Bhimanadam #24 Rohit Yadav Nethi #8 Bhavana Ganne #11 Prathyusha Mandala

More information

LOD Data GW Installation (1.0)

LOD Data GW Installation (1.0) LOD Data GW Installation (1.0) 1. Installation of IIS Role in Windows Server (2008R2 or later Operating System)... 1 1. Installation of IIS Role in Windows Server, continued (2008R2 or later Operating

More information

Mobile Login Extension User Manual

Mobile Login Extension User Manual Extension User Manual Magento provides secured and convenient login to Magento stores through mobile number along with OTP. Table of Content 1. Extension Installation Guide 2. API Configuration 3. General

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

EFM Community 3.1 Portal Administration Guide

EFM Community 3.1 Portal Administration Guide EFM Community 3.1 Portal Administration Guide WHITE PAPER For technical support please call: 1-800-787-8755 Or visit: Hwww.Vovici.comH Please contact Vovici technical support if you believe any of the

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Drupal Manual Plug-in installation... 4 Plug-in

More information

Embedded101 Blog User Guide

Embedded101 Blog User Guide Serving the Windows Embedded Community Embedded101 Blog User Guide Using Windows Live Write 2011 To Upload Blog Entry Samuel Phung Windows Embedded MVP http://www.embedded101.com Screen captured with Snagit

More information

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview System's Architecture System Overview Server Click2Go Web Site DB DAL BLL WS Mobile Internet Connection (GPRS, UMTS, WLAN, ) Mobile Phone Click2Go Mobile Application The system contains two environments:

More information

ESSR European Space Software Repository

ESSR European Space Software Repository ESSR European Space Software Repository Software User Manual T/ +4 031 424814 F/ +4 0314242816 E/ hello@innobyte.com W/ www.innobyte.com A/ Bl. Regiei, nr.6b, etaj 4-5, Sector 6, București, 060204, România

More information

Mobile Login extension User Manual

Mobile Login extension User Manual extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

More information

Almadallah Healthcare Management

Almadallah Healthcare Management Almadallah Healthcare Management This manual contains the information on provider account, the features or benefits a provider will get by having a user account with Almadallah Website. A l m a d a l l

More information

Louisiana Medicaid Management Information System (LMMIS)

Louisiana Medicaid Management Information System (LMMIS) Louisiana Medicaid Management Information System (LMMIS) LAMedicaid Provider Login (Admin Manage Users) User Manual Date Created: 09/17/2018 Prepared By Technical Communications Group Molina Medicaid Solutions

More information

MSD 6 Lite. This document will explain how to register and activate your MSD 6 Lite.

MSD 6 Lite. This document will explain how to register and activate your MSD 6 Lite. MSD 6 Lite This document will explain how to register and activate your MSD 6 Lite. First time installation of your Martin ShowDesigner The procedure on how to install and activate your MSD consists of

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

User Guide Published: 08/02/2010

User Guide Published: 08/02/2010 User Guide Published: 08/02/2010 Table of Contents 1 Revision History... 4 2 Introduction... 5 3 Accessing the TRAC Connect System... 5 3.1 Getting Started... 5 3.2 Registration... 8 3.3 Login... 11 3.4

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress About the Tutorial WordPress is an open source Content Management System (CMS), which allows the users to build dynamic websites and blog. WordPress is the most popular blogging system on the web and allows

More information

Extranet User Manager User Guide

Extranet User Manager User Guide Extranet User Manager User Guide Version 3.1 April 15, 2015 Envision IT 7145 West Credit Avenue Suite 100, Building 3 Mississauga, ON L5N 6J7 www.envisionit.com/eum TABLE OF CONTENTS NOTICE... 1 INTENDED

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) The Los Angeles Community Garden Inventory and Locator Team 13 Ardalan Yousefi Cole Cecil Jeff Tonkovich Shi-Xuan Zeng Project Manager Integrated Independent

More information

Cloud Services. Spam Manager. Quarantine Admin Guide

Cloud Services. Spam Manager. Quarantine Admin Guide Cloud Services Spam Manager Quarantine Admin Guide 10/23/2014 CONTENTS Introduction... 2 About Spam Quarantine Tasks... 2 Quarantine Deployment Tasks... 2 Before Activation of Spam Manager... 4 After Activation

More information

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Installation... 2 Drupal Manual Plug-in installation... 2 Plug-in Configuration... 4 Drupal Configuration Settings... 4

More information

Yet Another Forum Integration

Yet Another Forum Integration Sitecore Modules Yet Another Forum Integration Rev: 2009-06-04 Sitecore Modules Yet Another Forum Integration Instructions on installing the Yet Another Forum application and integrating it in a Sitecore

More information

Specialty Contractor User Manual. Table of Contents. Specialty Contractor User Manual Version 1 11/16/15

Specialty Contractor User Manual. Table of Contents. Specialty Contractor User Manual Version 1 11/16/15 Specialty Contractor User Manual Welcome to the C3 Training Database for Construction Career Collaborative! This software is where you keep track of your employees' training and safety credentials, project

More information

PCFC-Online Services Customer FAQ

PCFC-Online Services Customer FAQ PCFC-Online Services Customer FAQ 1. What is the link for Online Services? Given below is the link for Online Services. https://online.trakhees.ae/oaservices/login/form.htm 2. I forgot my Password. If

More information

Step by Step Guide Domain Security Pro

Step by Step Guide Domain Security Pro Step by Step Guide Domain Security Pro by Mark Dulisse Copyright 2013 DomainSecurityPro.com Page 1 Copyright 2013 by DomainSecurityPro.com All rights reserved. No part of this publication may be reproduced,

More information

Introduction. 1 of 42

Introduction. 1 of 42 Introduction Looking for information on how to host Rock internally? Well look no further. In this step-by-step guide we'll walk through the process of getting Rock up and running. Before we jump in, let's

More information

New World ERP-eSuite

New World ERP-eSuite New World ERP-eSuite 2018.1 INSTALLATION GUIDE April 9, 2018 Review important information for installing this release: SSL is required for esuite Services and Website servers. 2018 Tyler Technologies.

More information

Scout Enterprise Dashboard

Scout Enterprise Dashboard Scout Enterprise Dashboard Administrator s Guide Date 2017-07-25 0. Legal Information 2 1. Introduction 3 2. Installation 4 2.1. System requirements 4 2.2. Installing Scout Enterprise Dashboard 6 2.3.

More information

Andowson Chang

Andowson Chang Andowson Chang http://www.andowson.com/ All JForum templates are stored in the directory templates, where each subdirectory is a template name, being the default template name callled default. There you

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

How do I sign up for a Canvas account as a parent?

How do I sign up for a Canvas account as a parent? How do I sign up for a Canvas account as a parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

Kentico CMS 6.0 Intranet Administrator's Guide

Kentico CMS 6.0 Intranet Administrator's Guide Kentico CMS 6.0 Intranet Administrator's Guide 2 Kentico CMS 6.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

User Manual Documentation

User Manual Documentation User Manual Documentation Overview Dated: 10 th February 2018 Webmail is essentially using a web browser, such as Internet Explorer or Firefox, to access your Email account. The advantages of such a system

More information

SECTION 100 LOGIN/LOGOUT

SECTION 100 LOGIN/LOGOUT SECTION 100 LOGIN/LOGOUT SECTION 100 INDEX 101 Login 1-1 101.1 Forgot your password? 1-1 A. View Reminder 1-1 B. Send Password 1-2 102 First Time Users Login 1-2 103 Logout 1-3 SECTION 100: LOGIN/LOGOUT

More information

Documentation for the new Self Admin

Documentation for the new Self Admin Documentation for the new Self Admin The following documentation describes the structure of the new Self Admin site along with the purpose of each site section. The improvements that have been made to

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

Emergency Routing Service (ERS) Subscriber Guide

Emergency Routing Service (ERS) Subscriber Guide Emergency Routing Service (ERS) Subscriber Guide Rev B August 15, 2016 1 SUBSCRIBER PORTAL... 3 Login and Registration... 3 Subscriber Portal Home Page... 5 Changing your Location... 6 1.3.1 Recent Locations...

More information

Melon, Inc. Melon Components Starter Kit

Melon, Inc. Melon Components Starter Kit User s Guide for Melon Components Starter Kit For additional information www.meloncomponents.com Contact us at info@meloncomponents.com 2010 All rights reserved Contents Overview... 3 Melon Components

More information

Knowledge Hub Walkthrough

Knowledge Hub Walkthrough Knowledge Hub Walkthrough Welcome page Sign in Use your Knowledge Hub account to sign in. Register Are you new to the Knowledge Hub, then please register a new account Forgotten Password? You will be asked

More information

CompuCal Version 6 Installation Guide (Windows 2008/R2) Release

CompuCal Version 6 Installation Guide (Windows 2008/R2) Release CompuCal Version 6 Installation Guide (Windows 2008/R2) Release 6.3.0.4 Copyright CompuCal Calibration Solutions 2015 Page 1 of 17 Table of Contents 1. MINIMUM SPECIFICATIONS... 3 1.1 Client Server Spec...

More information

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 TABLE OF CONTENTS NO TOPICS PAGES 1 LOGIN 1-3 2 CHANGE PASSWORD 4 3 CREATE NEW REQUEST 5-7 4 VIEW REQUEST 8-9 5 LOGOUT 10 6 FORGOT

More information

SBCC Web File System - Xythos

SBCC Web File System - Xythos Table of Contents Table of Contents...1 Purpose...1 Login Procedure...1 Creating and Sharing a Web Folder for MAT153...2 Dreamweaver Remote Info...4 I Forgot My Pipeline Credentials...6 Purpose This purpose

More information

Edublogs. (WordPress) An Introductory Manual. Gail Desler

Edublogs. (WordPress) An Introductory Manual. Gail Desler Edublogs (WordPress) An Introductory Manual Gail Desler [Drawing on/updating/expanding tutorials and explanations from James Farmer, Mike Temple, Ewa McGrail, Lorelle, Joan Boan, Alice Mercer, Kate Olson,

More information

Sitelok Manual. Copyright Vibralogix. All rights reserved.

Sitelok Manual. Copyright Vibralogix. All rights reserved. SitelokTM V5.5 Sitelok Manual Copyright 2004-2018 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the Sitelok product and is

More information

2016 TaxSlayer Pro Desktop. Logging in to the Program Usernames/Passwords

2016 TaxSlayer Pro Desktop. Logging in to the Program Usernames/Passwords 2016 TaxSlayer Pro Desktop Logging in to the Program Usernames/Passwords Contents Logging in to the Program... 2 First Time Logging In... 2 Forgot Username/Password Preparer... 4 Logging in as ADMIN...

More information

Lab 4: ASP.NET 2.0 Membership, Login Controls, and Role Management

Lab 4: ASP.NET 2.0 Membership, Login Controls, and Role Management Lab 4: ASP.NET 2.0 Membership, Login Controls, and Role Management Forms authentication is a popular means of securing Internet applications. In ASP.NET s brand of forms authentication, you designate a

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

Website instructions. 1. Creating a Post

Website instructions. 1. Creating a Post Website instructions Using the Wordpress site is a fairly simple process. To access the control panel in order to add content, simply go to Link > Staff Only > Site Login and enter your username and password.

More information

Browser Set-Up Instructions

Browser Set-Up Instructions Browser Set-Up Instructions Before visiting the Assessment LinkBC site for the first time, you must configure your Internet Explorer browser: o to recognize the Assessment LinkBC site as a trusted site,

More information

Tutorial #2: Adding Hyperlinks to ASP.NET

Tutorial #2: Adding Hyperlinks to ASP.NET Tutorial #2: Adding Hyperlinks to ASP.NET In the first tutorial you learned how to get data from a database to an ASP.NET page using data source controls. When displayed in a browser, your page looks like

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

We want to install putty, an ssh client on the laptops. In the web browser goto:

We want to install putty, an ssh client on the laptops. In the web browser goto: We want to install putty, an ssh client on the laptops. In the web browser goto: www.chiark.greenend.org.uk/~sgtatham/putty/download.html Under Alternative binary files grab 32 bit putty.exe and put it

More information

Migrate From Version 2.2 to Version 3.1 Guide

Migrate From Version 2.2 to Version 3.1 Guide Migrate From Version 2.2 to Version 3.1 Guide EFM Community Fall 2007(Version 3.10) July 2008 For support, contact Vovici Technical Support at (781) 261-4300, ext. 2 or use the web form located at: http://s3.parature.com/ics/support/default.asp?deptid=5474

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

Wikispaces in Education A Comprehensive Tutorial

Wikispaces in Education A Comprehensive Tutorial Wikispaces in Education A Comprehensive Tutorial JENNIFER CARRIER DORMAN H T T P : / / J D O R M A N. W I K I S P A C E S. C O M / H T T P : / / C L I O T E C H. B L O G S P O T. C O M / Why use wikis?

More information

User Manual. Online E-commerce Music Store Version 1.0

User Manual. Online E-commerce Music Store Version 1.0 User Manual Online E-commerce Music Store Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State University

More information

Smart Connection User Guide

Smart Connection User Guide User Guide Issue 1.4 May 2010 0/59 CONTENTS 1. Introduction and Overview...3 1.1 Profiles and Privileges in... 3 1.2 Interactions with Oberthur s Personalisation Systems... 3 Transmission / Input File

More information

Parent Portal - Create an Account and Forgot Password

Parent Portal - Create an Account and Forgot Password Parents and guardians of Miami-Dade County Public School (M-DCPS) students are encouraged to open a Parent Portal account. The Portal contains valuable student information including the Electronic Gradebook,

More information

Final Documentation. Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter

Final Documentation. Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter Final Documentation Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter Table of Contents SITE HIERARCHY: 5 WEB.CONFIG CODE: 6 LOGIN CREDENTIALS 6 HOME PAGE: 7 Purpose: 7 Design: 7 Data

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

USER GUIDE Azure Factory

USER GUIDE Azure Factory 2011 USER GUIDE Azure Factory Contents Setting up a Windows Azure Account... 2 Setting up your Server... 3 Creating a Database... 4 Manage the Database... 6 Generating the Azure Factory Project... 9 Publishing

More information

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni Vision Document 2.0 Online Book Store Phase-II Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Vamsi Krishna Mummaneni CIS 895 MSE Project Kansas State

More information

USER MANUAL. SuiteCRM / SugarCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1

USER MANUAL. SuiteCRM / SugarCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Installation...2 Joomla Manual Plug-in installation...2 Plug-in Configuration...4 Joomla Configuration Settings...4 CRM Fields

More information

State Association Website User Manual. (For Website Administrators)

State Association Website User Manual. (For Website Administrators) State Association Website User Manual (For Website Administrators) BASICS There have been some basic changes to the layout of the new NAMSS website. Three major changes have occurred: 1. Login Process

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list BizForms BizForm (on-line form) Blogs Comment view Recent posts Post archive Blogs comments viewer New blog Blog

More information

Customer Care Portal User Guide

Customer Care Portal User Guide Customer Care Portal User Guide Table of Contents Logging In...3 Live Chat... 3 Viewing your Cases...4 Logging a Case for Customer Support...4 Projects...6 Knowledge Base....6 Content.....7 Forms...7 Event

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) The Los Angeles Community Garden Inventory and Locator Team 13 Ardalan Yousefi Cole Cecil Jeff Tonkovich Shi-Xuan Zeng Project Manager Integrated Independent

More information

Using Your Secure Online Portal

Using Your Secure Online Portal Using Your Secure Online Portal Revised November 2012 Page 1 TABLE OF CONTENTS Overview... 3 1.0 Registering For Your Portal... 3 2.0 Accessing Your Secure Portal... 4 3.0 My Documents Tab... 5 4.0 Questions

More information

Web Forms User Security and Administration

Web Forms User Security and Administration Chapter 7 Web Forms User Security and Administration In this chapter: Administering an ASP.NET 2.0 Site...................................... 238 Provider Configuration................................................

More information

City of Topeka e-procurement Supplier User Guide

City of Topeka e-procurement Supplier User Guide City of Topeka, Kansas Financial Services Department Contracts & Procurement Division 215 SE 7 th Street, Room 60 Topeka, KS 66603 City of Topeka e-procurement Supplier User Guide Entering Event Responses

More information

MSEDCL e-tendering Contractor Registration Guide

MSEDCL e-tendering Contractor Registration Guide MSEDCL e-tendering Contractor Registration Guide 1 P a g e 2 P a g e Table Of Contents Getting Started...4 Contractor Registration...5 Adding Company Details...5 Adding Company Contact Details...7 Next

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for DotNetNuke TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for DotNetNuke TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 DotNetNuke Manual Plug-in Installation...

More information

MEMBER GUIDE. Username / Password Reset. If you have not yet requested a password reset, that would be the first step. To do this: STEP 1

MEMBER GUIDE. Username / Password Reset. If you have not yet requested a password reset, that would be the first step. To do this: STEP 1 Account Information 23 sabrestreasurer Log Out MEMBER GUIDE Username/Password Reset Update Credit Card/Cancel Subscription Change/Add Email Multi-Site Access Claim Dibs Signup Errors Username / Password

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

Using Sitelok with Webplus

Using Sitelok with Webplus Using Sitelok with Webplus Using Sitelok with Webplus Copyright 2014-2016 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the

More information

The connection has timed out

The connection has timed out 1 of 7 2/17/2018, 7:46 AM Mukesh Chapagain Blog PHP Magento jquery SQL Wordpress Joomla Programming & Tutorial HOME ABOUT CONTACT ADVERTISE ARCHIVES CATEGORIES MAGENTO Home» PHP PHP: CRUD (Add, Edit, Delete,

More information

1. Beginning (Important)

1. Beginning (Important) Appointway Wordpress" Documentation by InkThemes Get Your Site Ready in Just 1 Click Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel

More information

TripSource: Profile Manager

TripSource: Profile Manager TripSource: Profile Manager End User Manual March 12, 2018 Page 1 End User Manual April 12, 2018 Contents... 3 1. Login... 3 1.1. Travel Login and Access to Profile... 3 1.2. Login for the First Time (traveler

More information

Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape)

Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape) Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape) This guide is to be used if you intend on installing enterprise as a stand alone application on one

More information

EPiServer CMS. Administrator User Guide

EPiServer CMS. Administrator User Guide EPiServer CMS Administrator User Guide EPiServer CMS Administrator User Guide update 15-3 Table of Contents 3 Table of contents Table of contents 3 Introduction 6 Features, licenses and releases 6 Web-based

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.1

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 Plug-in Configuration... 5 Dynamics CRM Configuration

More information

SSL VPN (Virtual Private Network) Service

SSL VPN (Virtual Private Network) Service PolyU Admin VPN SSL VPN (Virtual Private Network) Service Installation and User Guide Table of Contents 1. Introduction... 2 2. System Requirements... 2 3. Session lifetime... 2 4. Installation and Login

More information

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities Access Supplier Portal to Review and Respond to Bid Opportunities Contact entered for commodity code (and established proxies) will receive email notification of bid opportunity. 1. Login to the Supplier

More information

Setting up your new Adobe Connect account

Setting up your new Adobe Connect account Setting up your new Adobe Connect account Adobe will send a couple of introductary emails as part of the Connect provisioning process. The final email will be titled Your Connect Enterprise Account is

More information

Installing Dynamicweb Wrap Community Edition

Installing Dynamicweb Wrap Community Edition User manual Installing Dynamicweb Wrap Community Edition [Version] 2015.09.23 English LEGAL INFORMATION Copyright 2014 Dynamicweb Software A/S. All rights reserved. Alteration or reproduction of this

More information

AVS Portal Security User Guide

AVS Portal Security User Guide AVS Portal Security User Guide Oregon Department of Human Services 2018 TABLE OF CONTENTS I. ACCESS OVERVIEW...2 II. AVS PORTAL.4 2.1 AVS PORTAL LOGIN. 4 2.2 SECURITY USER PORTAL VIEW..5 2.3 SECURITY USER

More information

UNIGLOBE ProFILER Express

UNIGLOBE ProFILER Express UNIGLOBE ProFILER Express UNIGLOBE Travel Electronic Traveller Profile System Version last updated 25 November 2016 UNIGLOBE Travel (UNIGLOBE) is pleased to provide eligible travellers with a very efficient

More information

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 Plug-in Configuration... 5 Dynamics CRM Configuration

More information

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0 OSLA (Office of Staff Legal Assistance) User Manual Created Date: 09 th December, 2016 Version: 2.0 Table of Contents (Re-generate the TOC after modifications to the document) Contents Table of Contents

More information

SO, ARE YOU READY? HERE WE GO:

SO, ARE YOU READY? HERE WE GO: Date: 28/09/2012 Procedure: How To Move WordPress To A New Server Or Host Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO MOVE WORDPRESS TO A NEW SERVER OR HOST It

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

CS 2316 Homework 9a Login Due: Friday, November 2nd, before 11:55 PM Out of 100 points. Premise

CS 2316 Homework 9a Login Due: Friday, November 2nd, before 11:55 PM Out of 100 points. Premise CS 2316 Homework 9a Login Due: Friday, November 2nd, before 11:55 PM Out of 100 points Files to submit: 1. HW9.py This is an INDIVIDUAL assignment! Collaboration at a reasonable level will not result in

More information

KronoDesk Administration Guide Version 2.0 Inflectra Corporation

KronoDesk Administration Guide Version 2.0 Inflectra Corporation KronoDesk Administration Guide Version 2.0 Inflectra Corporation Date: February 28th, 2017 Contents 1. Introduction 1 2. Installing KronoDesk 2 2.1. System Prerequisites 3 2.2. Installing the Software

More information