%@ page language="java" import="java.util.*, org.dmi.*" %> <%@ include file="/html/incl/header.jsp" %> <% String confId = request.getParameter("confId"); Vector countryKeyValuePairs = MemoryData.getCountries(); Vector stateKeyValuePairs = MemoryData.getStates(); Vector organizationKeyValuePairs = MemoryData.getOrganizations(); String key = null; String value = null; KeyValuePair pair = null; PaymentProcessor pp = (PaymentProcessor)session.getAttribute(PaymentAttributes.PAYMENT_PROC_ATTRIB); Client client = (Client)session.getAttribute("client"); String fname = ""; String lname = ""; String title = ""; String dept = ""; String orgName = ""; String orgTypeCd = ""; String addr1 = ""; String addr2 = ""; String city = ""; String state = ""; String zip = ""; String country = ""; String email = ""; String phone = ""; String phoneType = ""; String fax = ""; Addr addr = new Addr("","","","","",""); if (client != null) { DMIGlobal.getInstance().getLogWrtier().log("conf_reg:"+client, LogWriter.DEBUG); pp.setClient(client); addr = pp.getShipAddress(); fname = client.getFirstName(); lname = client.getLastName(); title = client.getTitle(); dept = client.getDept(); orgName = client.getOrgName(); orgTypeCd = client.getOrgTypeCd(); email = client.getEmailAddr(); phone = client.getPhoneNo(); phoneType = client.getPhoneType(); fax = client.getFaxNo(); // get the address details DMIGlobal.getInstance().getLogWrtier().log("conf_reg:"+addr, LogWriter.DEBUG); addr = pp.getListAddress(); addr1 = addr.getAddressLine1(); addr2 = addr.getAddressLine2(); city = addr.getCity(); state = addr.getState(); zip = addr.getPostalCode(); country = addr.getCountry(); } Conf conf = Conf.findByConfId(confId); ConferenceWorkshop aShop = new ConferenceWorkshop(confId); Vector shops = aShop.find(); %>
|
<%= conf.getConfTitle() %> If you are registering for another person who is a DMI member, you will need their log-in information (e-mail address and password) to receive the member discount. Otherwise, you will be charged the non-member price. |