Need Help Badly on Shopping Cart Using JSP And Java Servlet

Hi All,
This is the 1st time i am trying to create a shopping cart using JSP and Servlet.
I have read through a few acticles but i still do not get the whole idea of how it works.
Please guide me as i need help very badly.
Thanks.
This is one of the jsp page which displays the category of products user would like to buy : Products.jsp
<html>
<head>
<title>Purchase Order</title>
</head>
<body topmargin="30">
<table border="0" width="100%" id="table1" cellpadding="2">
     <tr>
          <td bgcolor="#990000" width="96">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
          Code</font></b></td>
          <td bgcolor="#990000" width="260">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
          Description </font></b></td>
          <td bgcolor="#990000" width="130">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Brand
          </font></b></td>
          <td bgcolor="#990000" width="146">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">UOM
          </font></b></td>
          <td bgcolor="#990000" width="57">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Unit<br>
          Price </font></b></td>
          <td bgcolor="#990000" width="62">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
          Carton<br>
          Price </font></b></td>
          <td bgcolor="#990000" width="36">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
          Qty</font></b></td>
          <td bgcolor="#990000" width="65">
          <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Add<br>
          To Cart</font></b></td>
     </tr>
<tr>
<td align="center" width="96" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">123</font>
</td>
<td align="center" width="260" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">Tom Yam</font>
</td>
<td align="center" width="130" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">Nissin</font>
</td>
<td align="center" width="146" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">12 x 10's</font>
</td>
<td align="center" width="57" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">$3.85</font>
</td>
<td align="center" width="62" bgcolor="#CCCCCC">
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">$46.2</font>
</td>
<td align="center" width="36" bgcolor="#CCCCCC">
<!--webbot bot="Validation" S-Data-Type="Integer" S-Number-Separators="x" -->
<p align="center"><input type="Integer" name="Q10005" size="1"></p>
</td>
<td align="center" width="65" bgcolor="#CCCCCC">
<p><input type="checkbox" name="checkbox" value="123"></p>
</tr>
<tr>
</table>
<table border="0" width="100%" id="table2">
     <tr>
          <td>
          <div align="right">          
               <input type="hidden" name="hAction" value="AddToCart"/> 
          <input type=submit name="submit" value="Add To Cart"/>                     
</div>
</td>
     </tr>
</table>
</body>
</html>
After user has make his selection by entering the qty and ticking on the check box, he would click the "Add To Cart" button ... and this would call my servlet : AddToAddControlSerlvet.java
import javax.servlet.http.*;
import javax.servlet.*;
import java.io.*;
import java.util.*;
import java.util.ArrayList;
public class AddToCartControlServlet extends HttpServlet
     public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,IOException
          String action = req.getParameter("hAction");
          if (action.equals("AddToCart"))
               addToCart(req,res);
     public void addToCart(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
          try
               String url = "";
               String[] addList = req.getParameterValues("checkbox");
               HttpSession sess = req.getSession(true);
               //String sessionID = sess.getId();
               DBClass dbClass = new DBClass();
               ArrayList cartList = new ArrayList();
               for (int i = 0; i < addList.length; i++)
                    String productCode = (String)addList;
                    int qty = Integer.parseInt(req.getParameter("Q"+productCode));
                    Products product = dbClass.getProductDetail(productCode);
                    double totalUnitAmt = qty * product.getUnitPrice();
                    double totalCartonAmt = qty * product.getCartonPrice();
                    Order order = new Order(product.getProductCode(),product.getProductDesc(),product.getBrandName(),product.getUom(),qty,product.getUnitPrice(),product.getCartonPrice(),totalUnitAmt,totalCartonAmt);
                    cartList.add(order);
               sess.setAttribute("cartList", cartList);
               url = "/Cart/CartDetails.jsp";
               ServletContext sc = getServletContext();
               RequestDispatcher rd = sc.getRequestDispatcher(url);
               rd.forward(req, res);
          catch (Exception e)
               System.out.println(e);
From here, i would get the list of items which user has selected and add to the cartList, then i would direct the user to CartDetails.jsp which displayed the items user has selected.
From there, user would be able to remove or to continue shopping by selecting other category.
How i do store all the items user has selected ... everytime he would wan to view his cart ...
As i would be calling from jsp to servlet .. or jsp to servlet ... and i do not know how i should go about in creating the shopping cart.

Hi !
Yon can use a data structure as vector and store the items selected by the user into the vector . Keep the vector in session using session object , so the user can access the entire shopping cart from anywhere in the application .
Then , you can change the cart accordingly .
Hope this works.
Cheers ,
Pranav

Similar Messages

  • Problem with JSP and Java Servlet Web Application....

    Hi every body....
    I av developed a web based application with java (jsp and Java Servlets)....
    that was working fine on Lane and Local Host....
    But when i upload on internet with unix package my servlets and Java Beans are not working .....
    also not access database which i developed on My Sql....
    M using cpanel support on web server
    Plz gave me solution...
    Thanx looking forward Adnan

    You need to elaborate "not working" in developer's perspective instead of in user's perspective.

  • Need help in creating online exam using jsp

    Want to create a small project for online exam using jsp. As of now I am unable to find, how can I
    Get random questions from mysql database
    Put the timer, so that the exam result is shown automatically after the specified time for exam is overMore queries to follow.

    I started learning java only a short time ago, so it's obvious that my knowledge is limited. Else I wouldn't have asked the question here.

  • HELP!!!!! JSP and Java Script

    Hi,
    I have a JSP file that I need to create 3 drop lists (choice list). If one of these 3 choice lists is selected, then the other 2 need to deselected and disabled. I need help with the code.
    Do I use JavaScript or Java? Below is the html code. I would really appreciate any help on this.
    Thanks,
    BK
    <!--
    Refer to the directory gary/reportingstd/getReqs.jsp to see how to get the value from the
    choice list and other fields.
    -->
    <html>
    <head><title>New Window Example</title>
    <STYLE TYPE="text/css" >
    td { font-size: 11px }
    th { font-size: 11px }
    body { background-color: #666666 }
    </STYLE>
    <SCRIPT>
    /* When press CANCEL button, the dialog box disappears. */
         function Closer()
              window.close();
         function checkForm()
         var f = document.queryForm;
    * Checks if an account number is entered. If not, an error message dialog pops up
    * to the user.
    * Checks if a business unit was chosen. If not, an error message dialog pops up
    * to the user.
         buChoice = f.buList.selectedIndex;
              if (f.buList.options[buChoice].value == "")
                   alert("Please choose a business unit.");
                   f.buList.focus();
                   f.toDate.select();
                   return false;
         * This <code>statusMsg()</code>is to give the user feedback while data is being entered by
         * creating a status message. This script lets you modify what is displayed in this bar,
         * giving you the ability to send messages to the user while he interacts with filling out
         * the fields.Status Messages are the phrases you see in the status bar at the bottom of a
         * window or dialog.
         * For instance: For the account number text field, as long as the cursor is in this text
         * field of Account #, there's a message at the bottom of the dialog box informing, " Enter
         * only numeric characters."
         * @param msgType
         * @ mesage the data structure to store the messages sent to the users
         function statusMsg(msgType)
    var message = "";
    if (msgType == "integer")
    message = "Enter numeric characters.";
    if (msgType == "integerDate")
    message = "between 1990 and 2010";
    if (msgType == "ListBU")
    message = "Choose which BU?";
    if (msgType == "ListMonth")
    message = "Choose a month."
    window.defaultStatus = message;
    window.status = message;
    </script>
    </head>
    <body onFocus="statusMsg('')">
    <FORM NAME= "queryForm" onSubmit = "return checkForm()" ACTION="Welcome.html">
    <TABLE Border="0" cellspacing="2" cellpadding="4">
    <TR>     
    <TD ALIGN=left>Company Code:</TD>
    <TD WIDTH="20%"><SELECT Name=choiceMonths1 size=1 onFocus="statusMsg('ListMonth')">
    <option value="" selected>
    <OPTION Value="01">01
    <OPTION Value="02"> 02
    <OPTION Value="03"> 03
    <OPTION Value="04"> 04
    <OPTION Value="05"> 05
    <OPTION Value="06"> 06
    </SELECT></TD>
         <TR>
         <TD ALIGN=left>RegionID:</TD>
         <TD><select name=buList onFocus="statusMsg('ListBU')"> // onChange = "selectionMade()"
         <option value="" selected>
         <option value=Norht ALIGN="left">North
         <option value=East ALIGN="left">East
              <option value=South ALIGN="left">South
         <option value ALIGN="left">North</select></TD></TR>
    <TR>
         <TD ALIGN=left>Business Unit ID:</TD>
         <TD><select name=buList onFocus="statusMsg('ListBU')"> // onChange = "selectionMade()"
         <option value="" selected>
         <option value=TBR ALIGN="left">TBR
         <option value=BAL ALIGN="left">BAL
         <option value ALIGN="left">ABH</select></TD></TR>
    </TR></TABLE>
    <TABLE>
    <tr>
    <TD><INPUT TYPE=submit Value=Submit></TD>
    <TD><INPUT TYPE=button NAME=btnClose VALUE=Cancel SIZE=20 ALIGN= center onClick="Closer()"></TD>
         <TD><input type=reset VALUE= Clear Query SIZE=20 ALIGN= right></TD></TR></TABLE>
    </FORM>
    </BODY>
    </html>

    What i've done in the past in this same situation is to use radio buttons alongside my dropdown lists. Whenever a radio button is selected, the corresponding dropdown list is enabled, and the other lists are all disabled. Not too hard to implement in Javascript either. Use an onClick() and set the other fields to disabled, using document.form.field.disabled = true. (and obviously, set the one you want to disabled = false). But obviously, you're still going to want to know which one to retrieve later, right? Use a hidden tag and in the same Javascript onClick, you can dynamically set the variable to whatever you want. Here's a pretty compact example using 2 fields
    function enable(field)
         if(field == "firstName")
              document.myForm.firstName.disabled = false;
              document.myForm.lastName.disabled = true;
              document.myForm.searchBy.value = "firstName"
         else
              document.myForm.firstName.disabled = true;
              document.myForm.lastName.disabled = false;
              document.myForm.searchBy.value = "lastName"
    }Or something like that. Yeah, I know it's not the greatest javascript in the world, but i was just simplifying things to give an example. Hope this helps somewhat :)
    Simon

  • Need help connecting to network printer using xfce and cups

    Hello
    please can someone assist me with setting up a printer.
    I am running arch and xfce desktop.
    I have an Epson Stylus Photo R800 USB printer connected to a wireless Belkin all-in-one Print Server.
    I do not know how to connect to this printer.
    I am not conversant in CUPS or network printing and would very much like to use the printer.
    My arch box is connected through cable to a wireless router.
    The print server is connected to the wireless router and the router confirms the print server is attached to the network.
    The print server IP address is 192.168.0.100.
    The printer server has a web interface which I used to set wireless and TCP settings. I should say that I went into this interface and configured the print server which is totally usable and fine from a Vista laptop using wireless - vista laptop "sees" the print server and prints over wireless, therefore I know the server and printer are working together and all the print server settings are fine. I dont know how Vista connects, it just does!
    I tried installing gutenprint and foomatic, went into the CUPS server page (localhost:631) and found my printer but I'm not sure if my connection string (socket://192.168.0.100:9100) is correct. I've tried several values and several Epson drivers from the CUPS web interface, all to no avail. I just get this message:
    bash-3.2# lpstat -t
    scheduler is running
    system default destination: Epson
    device for Epson: socket://192.168.0.100:9100
    Epson accepting requests since Sat 26 Jul 2008 22:53:35 BST
    printer Epson now printing Epson-0. enabled since Sat 26 Jul 2008 22:53:35 BST
    /usr/lib/cups/filter/pstoraster failed
    I have no desire to be a CUPS expert nor a networking expert - I was rather hoping someone could guide me through the process, I have tried reading web links (google) but do not understand various pages and instructions.
    bash-3.2# cat /etc/cups/printers.conf
    # Printer configuration file for CUPS v1.3.8
    # Written by cupsd on 2008-07-26 22:34
    <DefaultPrinter Epson>
    AuthInfoRequired username,password
    Info Epson
    DeviceURI socket://192.168.0.100:9100
    State Idle
    StateTime 1217108079
    Accepting Yes
    Shared Yes
    JobSheets none none
    QuotaPeriod 0
    PageLimit 0
    KLimit 0
    OpPolicy default
    ErrorPolicy stop-printer
    </Printer>
    any ideas good folk?
    Last edited by keratos (2008-07-26 22:07:45)

    EDIT:
    SOLVED!
    the problem was that gutenprint needed to be installed.
    I looked at the rastertops file in /usr/lib/cups/filter and it was very small, handfull of lines, but refered to gutenprint (whatever that is).
    "pacman -Q gutenprint" revealed it was not installed.
    All is fine now.
    GREAT!

  • Need help bad!!  issues with usb and updating to 10.4.11

    So a few weeks back I was getting error that was something like IOUFamily.kext was missing and it would not let me attach a usb flash stick. but the usb mouse and keyboard have worked fine. TOday i installed the 10.4.11 update from 10.4.9, now the mac is stuck at the loggin screen and i can't get any mouse or keyboard to work! so i can't even access the mac! Please help!

    First, which machine is it? There are no G5 Intels. There are G3, G4, G5s, and there are IntelMacs.
    Try booting from the install CD/DVD. You may have to unplug everything for a few minutes first.

  • Need help with batch file for javac.exe and java.exe

    I have this in my batch file:
    c:\jdk1.3.1_05\bin\javac
    What symbol do I need to be able to run this from cprompt with any file following it

    Thanks could remember that for nothing

  • How to create a shopping cart in JSP?

    I am creating an online product ordering system, How can i create a shopping cart in jsp? is there a way i can save a table containg itemcode, price, quantity in jsp? Can i save it using bean or session? please help me. thanks in advance.

    Hello,
    i want to create online shopping cart using html and JSP.
    At first i want to create 1html page where login ad logup optios are provided. After his login, a JSP page containing 3 links namly T-shirts,Jeanspat and Formals is displayed.
    After user select any of the link it must go to particular page.
    There, option of color, size is provided.
    And some 5 to 6 items are displayed with its pfxd prices.
    And in the same page a cart is provided. Whe the user selects(clicks) any item the same must display in cart.
    In the same page link to T-shirts,Jeanspat and Formals is displayed agaiT-shirts,Jeanspat and Formals is displayed agaiT-shirts,Jeanspat and Formals is privided again.
    next page must show the items selected. And finally it must show the "thank you" page stating that your delivary will be delivered to you within 24 hrs.
    Thanks in advance ,
    sameer

  • JSP and Java Servelets, What do I need to get started?

    What do I have to download in order to start using JSP and Java Servelets? How do I test the codes after I've written something? Anyone?

    Right and you can download tomcat server from http://jakarta.apache.org/
    and do not forget to set java home path in tomcat.See it's documentation formore help on site itself.
    To test your codes for jsp put all your jsp,html,image and other resource files in tomcat's webaps's root directory.
    Put all your java class files of beans if used and servlet's class files in root's webinf's class directory.
    It will make sense to try very easy programs if u r a begineer .After starting the server post setting the java home path .(you can start it in bin directory's startup.bat file)
    All the best
    Ashish

  • Need help badly!! how can i use the front camera i...

    guys, i need help with the front camera of my device
    how can i enable the front camera of nokia N900 to shoot photos or videos,
    this problem is really bugging me...
    need help badly...

    You can't.. it is terrible..
    the only app that really uses it is mirror
    Open this link on your phone to install mirror
    http://maemo.org/downloads/product/raw/Maemo5/mirror?get_installfile
    the camera firmware is bad, so the image quality is truely terrible.. play with mirror to see.. it may be fixed in a future firmware release (it *IS* better than it was.. the firmware last year had a line through the picture!)

  • Grouping of Shopping Carts using the report  BBP_SC_TRANSFER_GROUPED

    Hi Experts,
    I am a new SRM consultant and have been asked to investigate an issue regarding grouping of Shopping Carts using the report  BBP_SC_TRANSFER_GROUPED.
    The wanted scenario:
    For one specific vendor we wish to pool/group request coming from various shopping carts into one PO e.g. once a day. The shopping carts for that vendor can be destinguished by one specific product category.
    We are on classic scenario hence the PO will be created in our ECC system.                                                                               
    Settings we have done to accomplish what we want:
    1. We have set up the transfer for grouping on the specific product category in the sourcing area in the IMG structure
    2. We have run the report BBP_SC_TRANSFER_GROUPED (grouping takes place according to the product category)
    This approach works, the shopping carts gets grouped into one PO in ECC. however the line items from the Shopping Carts are mixed in the PO eg SC1: Item A, Item B, Item C, Item D SC2: Item 1, Item 2, Item 3, Item 4 PO (Current result) Item A, Item 1, Item B, Item 2, Item C, Item 3, Item D, Item 4.
    This seems quite strange, as there are no logic reason for this split. It would be understandable if it was a matter of delivery dates of the goods, but they are not in any order i.e. first coming delivery date first.
    Does anyone know how to correct this or can anyone clarify why this sequence mix happens?
    For me it seems like a program errror.
    Hope you can help me solve this issues
    Cheers Christian
    Edited by: Christian Gjellerup on Aug 6, 2010 3:34 PM
    Edited by: Christian Gjellerup on Aug 6, 2010 3:35 PM

    Hi,
    In SRM -Product categories = Purchasing group in SAP R/3.
    During the transfer of P.R   from R/3 you have enter the Purchasing group in R/3.
    In SRM in the PPOMA_BBP in the extended attribute you can enter the exact product categories
    or else enter * in the product categoies and the backend logical system
    in SPRO --define objects in backend system --- in this enter the purchasing group and category Id
    check your default settings in the SRM web browser
    Regards
    G.Ganesh Kumar

  • I need help badly with my ibook and palm pilot

    Good day. I recently fixed my ibook and my palm to sync with each other. I configured my palm to sync with entourage. I then realized that it would be much better that if I sync my palm pilot with the palm desktop. Gow do I now reverse this? How do i cancel entourage to sync with my pal pilot. please advise. need help badly on this. thanks... i just like to feep my files organized and i find it difficult using entourage...my palm pilot is a palm TX...

    I also have a Palm handheld. I use iCal and Address Book more than Entourage. This is what I did:
    At first, I tried to adapt to Palm Desktop. I didn't like it, so I looked for the *iSync Conduit*. I found it and installed it. Then, I ignored the Palm desktop software (except the HotSync utility) and have used iSync with iCal and Address Book since.
    I know that doesn't answer the question about switching from Entourage, but Desktop isn't that great either. iSync is what I recommend.
    -NA

  • HT4009 Ok so my problem is I put $100 on my account an it not letting me buy in app purchases an I'm ticked off to the max an idk how to fix this I bough in app the other day perfectly fine I need help bad HELP me

    Ok so my problem is I put $100 on my account an it not letting me buy in app purchases an I'm ticked off to the max an idk how to fix this I bough in app the other day perfectly fine I need help bad HELP me

    You need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Need Help in Splitting a String Using SQL QUERY

    Hi,
    I need help in splitting a string using a SQL Query:
    String IS:
    AFTER PAINT.ACOUSTICAL.1..9'' MEMBRAIN'I would like to seperate this string into multiple lines using the delimeter .(dot)
    Sample Output should look like:
    SNO       STRING
    1            AFTER PAINT
    2            ACOUSTICAL
    3            1
    4            
    5            9" MEMBRAIN
    {code}
    FYI i am using Oracle 9.2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    There's this as well:
    with x as ( --generating sample data:
               select 'AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN' str from dual union all
               select 'BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN' str from dual)
    select str,
           row_number() over (partition by str order by rownum) s_no,
           cast(dbms_xmlgen.convert(t.column_value.extract('//text()').getstringval(),1) as varchar2(100)) res
    from x,
         table(xmlsequence(xmltype('<x><x>' || replace(str,'.','</x><x>') || '</x></x>').extract('//x/*'))) t;
    STR                                                S_NO RES                                                                                                
    AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN                 1 AFTER PAINT                                                                                        
    AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN                 2 ACOUSTICAL                                                                                         
    AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN                 3 1                                                                                                  
    AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN                 4                                                                                                    
    AFTER PAINT.ACOUSTICAL.1..9" MEMBRAIN                 5 9" MEMBRAIN                                                                                        
    BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN          1 BEFORE PAINT                                                                                       
    BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN          2 ELECTRIC                                                                                           
    BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN          3 2                                                                                                  
    BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN          4                                                                                                    
    BEFORE PAINT.ELECTRIC.2..45 caliber MEMBRAIN          5 45 caliber MEMBRAIN      
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Adobe reader not working. Needs help badly!!

    I get this error  message and will not read or open my PDF files pissing me off Please read and why is this doing this and how
    do I fix this. Not happy!!
    My error messge I get. I need help badly to fox this !!
    Adobe reader could not open micro niche 14 Internet Marketing (1) zip because it is either not supported file type because the file
    has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    Can anybody Please help  me !!!!!!!!!!!!!!!!!!!!!!!!!!
    Michael Ladd and email is [removed]

    Adobe Reader cannot open ZIP files. It only opens PDF files.

Maybe you are looking for

  • Open a camera raw file by double clicking it in Windows Explorer

    I am running Lightroom 1.3.1 on a personal computer running Windows XP. Is it possible to double click open a camera's raw file (in my case it is a Canon camera CR2 file) that I can see within an open folder in Windows Explorer, and have the Lightroo

  • Can the ipad2 export 1080p video?

    I know that iMovie allows this and so does vericorder 1st video, but I haven't seen this capability in any other app. The guy who makes Videograde had this to say:  Unfortunately, the iPad 2 is does not allow for the 1080p video processing. The devic

  • How can I use other endnote bibliography formats in Pages '13?

    It's really stupid program. In my uni, we use our own reference style, and I'm using endnote X7. I have used whole time today to change endnote format in pages'13. But, I could note change. the bibliography formats are fix to some popular referencing

  • Error installing Enhanced Module

    hi everybody, I have upgraded my SGD-EE from 3.42 to 4.1. All works fine, except the enhanced module over a win 2003 server... the server is NOT 2003 sp1, and all was OK with SGD-EE 3.42. when I try to install the Enhanced Module over a windows 2003

  • Default dashboard page for each user group

    How can I set for each user group (or for each user) which dashboard will be opened as the deefault after login? Can I also set the default page in that dashboard?