Java urgent
Dera sir,
Here is my compose mail page.How to integrate attach file(text or excel) in this page.How to store in the database.How to download it in another page.please help.This is mighty part left in the mail page.Your help is paramount.Please helpa
Thank You
Debasis
jsp page--
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ include file="/security/authenticate.jsp"%>
<%@ include file="/security/TopAndLeftTrans.jsp"%>
<%@ page import="java.text.SimpleDateFormat" %>
<jsp:useBean id="tmsBean" scope="request" class="pms.administration.MailServer"></jsp:useBean>
<jsp:setProperty name="tmsBean" property="*"/>
<link rel="stylesheet" type="text/css" href="/tms/misc/rounded.css"></link>
<link rel="stylesheet" type="text/css" href="/tms/misc/stylemain.css"></link>
<link rel="stylesheet" type="text/css" href="/tms/misc/button.css"></link>
<link rel="stylesheet" type="text/css" href="/tms/misc/report.css"></link>
<title>MAIL INBOX</title>
<%
String messageFromtmsBean="";
String display="";
String userName=request.getParameter("userName");if(userName==null)userName="";
//System.out.println("userName:"+userName);
try{
display = request.getParameter("display");
//System.out.println("Hi:"+display);
String fetchPressed = request.getParameter("fetchPressed");
if(display==null)display="";
if(fetchPressed != null )
{
if(fetchPressed == "yes")
{
tmsBean.setFetchPressed("yes");
}else if(fetchPressed == "no")
{
tmsBean.setFetchPressed("no");
}
}
}catch(Exception e){}
try{
if(display.equals("draft"))
{
tmsBean.draftMail(request);
}else if(display.equals("send"))
{
tmsBean.sendMail(request);
}
}catch (Exception e)
{
//out.println("reached herer");
}
%>
<script type="text/javascript" language="JavaScript1.2" src="/tms/misc/Validate.js" ></script>
<script language="javascript" type="text/javascript" src="/tms/misc/datetimepicker.js"></script>
<head>
<style type="text/css">
.mouseOut {
background: #708090;
color: #FFFAFA;
}
.mouseOver {
background: #E6E6FA;
color: #000000;
}
</style>
<script language="JavaScript1.2">
var globalVar = "";
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
function initVars() {
inputField = document.getElementById("names");
nameTable = document.getElementById("name_table");
completeDiv = document.getElementById("popup");
nameTableBody = document.getElementById("name_table_body");
}
function findNames() {
//alert("gb nm "+globalVar);
initVars();
var inptVal = inputField.value;
if(globalVar.length > 0){
var rev = inptVal.split("").reverse().join("");
var commPosition = rev.indexOf(",");
var cStr = rev.substr(0,commPosition);
var corrStr = cStr.split("").reverse().join("")
//alert("reverse "+rev);
var srchStr = corrStr;//rev.substr(1, inptVal.substr(1,inptVal.reverse().indexOf(","));
//alert("scch string "+srchStr);
//alert(srchStr);
}else
{
srchStr = inptVal;
}
//alert("not global var "+srchStr.length);
if (srchStr.length > 0) {
createXMLHttpRequest();
var url = "user.jsp?val=" + escape(srchStr);
xmlHttp.open("GET", url, true);
xmlHttp.onreadystatechange = callback;
//alert("after call back ");
xmlHttp.send(null);
}else
{
clearNames();
}//end of if
}//main function
function callback() {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
var name = xmlHttp.responseXML.getElementsByTagName("name")[0].firstChild.data;
//alert("after set names");
setNames(xmlHttp.responseXML.getElementsByTagName("name"));
} else if (xmlHttp.status == 204){
clearNames();
}
}
}
function setNames(the_names) {
clearNames();
var size = the_names.length;
setOffsets();
var row, cell, txtNode;
for (var i = 0; i < size; i++) {
var nextNode = the_names[i].firstChild.data;
row = document.createElement("tr");
cell = document.createElement("td");
cell.onmouseout = function() {this.className='mouseOver';};
cell.onmouseover = function() {this.className='mouseOut';};
cell.setAttribute("bgcolor", "#E6E6FA");
cell.setAttribute("border", "1");
cell.onclick = function() { populateName(this); } ;
txtNode = document.createTextNode(nextNode);
cell.appendChild(txtNode);
row.appendChild(cell);
nameTableBody.appendChild(row);
}
}
function setOffsets() {
var end = inputField.offsetWidth;
var left = calculateOffsetLeft(inputField);
var top = calculateOffsetTop(inputField) + inputField.offsetHeight;
completeDiv.style.border = "black 1px solid";
completeDiv.style.left = left + "px";
completeDiv.style.top = top + "px";
nameTable.style.width = end + "px";
}
function calculateOffsetLeft(field) {
return calculateOffset(field, "offsetLeft");
}
function calculateOffsetTop(field) {
return calculateOffset(field, "offsetTop");
}
function calculateOffset(field, attr) {
var offset = 0;
while(field) {
offset += field[attr];
field = field.offsetParent;
}
return offset;
}
function populateName(cell) {
inputField.value = globalVar+cell.firstChild.nodeValue+",";
globalVar=document.getElementById("names").value;
clearNames();
}
function clearNames() {
var ind = nameTableBody.childNodes.length;
for (var i = ind - 1; i >= 0 ; i--) {
nameTableBody.removeChild(nameTableBody.childNodes[i]);
}
completeDiv.style.border = "none";
}
</script>
</head>
<form method="GET" name="ComposeMail" action="ComposeMail.jsp" autocomplete="off">
<table align="left" bgcolor="White" width=80% >
<tr>
<td>
<table align="left" width="20%" cellpadding="15" bgcolor="#D0D0E0" >
<tr>
<td>
<FONT size="6" color="Maroon"><b><U>TTMS Mail</U> </b>
</td>
</tr>
<tr>
<td>
<input type="button" name="Compose" value="Compose" style="width:100;" onClick="document.location.href='/tms/administration/ComposeMail.jsp?userName=<%=userName%>'">
</td>
</tr>
<tr>
</tr>
<tr><td>
<input type="button" name="Inbox" value="Inbox" style="width:100;" onClick="document.location.href='/tms/administration/MailInbox.jsp?userName=<%=userName%>'"></input>
</td></tr>
<tr>
</tr>
<tr><td>
<input type="button" name="Draft" value="Draft" style="width:100;" onClick="document.location.href='/tms/administration/DraftMail.jsp?userName=<%=userName%>'"></input>
</td></tr>
<tr>
</tr>
<tr><td>
<input type="button" name="Sent" value="Sent" style="width:100;" onClick="document.location.href='/tms/administration/SentMail.jsp?userName=<%=userName%>'"></input>
</td></tr>
</table>
<table align="center" width="20%" border="0" cellpadding="0" cellspacing="0"
style="border-collapse:collapse;border-color:black;">
<br></br>
<tr>
<td>
<div class="ContentContainer" id="CenterContainer">
<div class="WideSectionContainer" id="WideSectionContainer1">
<div>
<div>
<div id="hpmebaag">
<div class="cchprcp_container">
<div class="hprcp_n">
<div class="hprcp_e">
<div class="hprcp_w"></div>
</div>
</div>
<div class="hprcp_head">
<div>
<span class="mtitle">
<font style="titletext" class="mtitle" size="3">Mail Details</font>
</span>
</div>
</div><div class="hprcp_mid">
<table class="formfields" border="0" align="center" cellpadding="2" style="border-collapse: collapse"
bordercolor="#111111" cellspacing="1">
<tr>
<td colspan="2">
<table border="0">
<tr>
<td>
<table align="center" >
<tr>
<td>
<fieldset id="master" title="Asset Index No." style="width=600">
<legend>TTMS MAIL</legend>
<table align="center" border="0" >
<tr>
<td align="left">Mail From:
<b> <%= userName %>
</td>
</tr>
<tr>
<td align="left">Mail To:
<input type="text" size="70" name="inputText" id="names" onkeyup="findNames();" style="height:50;"/>
<div style="position:absolute;" id="popup">
<table id="name_table" bgcolor="#E6E6FA" border="0"
cellspacing="0" cellpadding="0"/>
<tbody id="name_table_body"></tbody>
</table>
</div>
<tr align="center">
<td>
<input type="button" name="Add cc" value="Addcc" style="width:60" onClick="document.location.href='/tms/administration/MailInbox.jsp?userName=<%=userName%>'">
<input type="button" name="Add Bcc" value="AddBcc" style="width:75" onClick="document.location.href='/tms/administration/MailInbox.jsp?userName=<%=userName%>'">
</td>
</tr>
<tr>
<td align="left">Subject:
<input type="TEXT" name="sub" size="50"></input>
</td>
</tr>
<tr align="center">
<td>
<input type="button" name="Attach File" value="Attach File" style="width:100;" onClick="document.location.href='/tms/administration/MailInbox.jsp?userName=<%=userName%>'"></input>
</td></tr>
</table>
</fieldset>
</td>
</tr>
</table>
<fieldset id="mst" title="Mail">
<legend>Your Mail</legend>
<table>
<tr>
<td><textarea name="remarks" id="remarks" cols="70" rows="20" value="<jsp:getProperty name="tmsBean" property="remarks" />"><jsp:getProperty name="tmsBean" property="remarks" /></textarea></td>
</tr>
<tr>
<input type="HIDDEN" name="userName" value="<%=userName%>"></input>
<input type="HIDDEN" name="display" value="">
<td align="center">
<input type="button" name="Discard" value="Discard" style="width:100;" onClick="document.location.href='/tms/administration/MailInbox.jsp?userName=<%=userName%>'">
<input type="button" name="Send" value="Send" style="width:100;" onclick="javascript:submitClick()">
<input type="button" name="Draft" value="Draft" style="width:100;" onclick="javascript:DraftMail()">
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
View Answers
Related Tutorials/Questions & Answers:
java linked list urgent!!!java linked list
urgent!!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
java linked list urgent !!!java linked list
urgent !!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
Advertisements
java linked list urgent !!!java linked list
urgent !!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
java linked list urgent !!!java linked list
urgent !!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
java linked list urgent !!!java linked list
urgent !!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
java linked list urgent !!!java linked list
urgent !!! Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list. The list must
urgent - Java Interview Questions display the url one by one.using core
java technology
(e.g)when am requesting...://www.roseindia.net/
java/example/
java/io/file-url-download.shtml
Thanks
Urgent java programming question.Pls helpUrgent java programming question.Pls help Q1. Generate 10 thousand random integers with values in the range between 1 to 100.
Q2. Store each randomly generated number into a node and then attach the node to a linked list
urgent-Exception in Tomcat - Java Beginnersurgent-Exception in Tomcat I am using eclipse ee and tomcat server. my jsp pages are working fine.after some time it cant display my jsp pages.it raises following exception.Html pages is working .
HTTP Status 500
URGENT: User Defined Classes - Java BeginnersURGENT: User Defined Classes Can someone help me?
Design and implement the class Day that implements the day of the week in a program. The class...://www.roseindia.net/
java/
java-get-example/index.shtml
Here, you will get different data
swing program plz urgent sir - Java Beginnersswing program plz
urgent sir
hi sir,i waan a jtable swings program table having column names "itemid","price".Initially table having single empty row.whenever we click the "enter" button automatically new row will be insert
urgent help needed in JDBC AND JAVA GUI - JDBCurgent help needed in JDBC AND
JAVA GUI my application allows a student to open a savings account , the student has to submit his or her names... want any one to help me convert from scanner to
java GUI for this code
plz help -java project very urgentplz help -
java project very urgent ? Ford furniture is a local furniture store in acts, and they as CS graduate students to implement a software system to generate various reports for them at the end of each month. You
Java urgent - Design concepts & design patternsJava urgent Dera sir,
Here is my compose mail page.How to integrate attach file(text or excel) in this page.How to store in the database.How to download it in another page.please help.This is mighty part left in the mail
urgent need urgent need Input a line. Count the number of words that start with a capital letter
Urgent requirementUrgent requirement I want to implement Autocompletion code for Jcombobox in swing can you please help me out from
Urgent Answer ReqUrgent Answer Req how to view the file content which is at client side from jsp in
java its urgent - Development processits urgent Hi
how to write a program in core
java ,
program is searching documents and contents in a existing folder or upload a folder... in a folder.its
urgent ModuleNotFoundError: No module named 'urgent'ModuleNotFoundError: No module named '
urgent' Hi,
My Python... '
urgent'
How to remove the ModuleNotFoundError: No module named '
urgent'... to install padas library.
You can install
urgent python with following command
PLease reply its urgent PLease reply its
urgent Write a
java function that has the signature
ΓΆβ?¬Ε?Public static int clock Inter sections(int hours, int minutes)ΓΆβ?¬Β...:minute:second format.
How's that
urgent urgent...pleAse help me.....please!urgent...pleAse help me.....please! please help me
urgent! how can i do dictionary with the use of array code in
java, where i will type the word then the corresponding meaning for that word will appear...thanks
Urgent Solution requiredUrgent Solution required This is possible to transfer that file from client to server and read that file and view it in JSP. If it is can you send the example. thanks alot in advance
Hi,
You can create a JSP file
Please help me urgent...........Please help me
urgent........... For what kind of a problem would use a Tree Set and not a Tree Map
For what kind of a problem would use a Tree Map and not a Tree Set
Hello Friend,ADS_TO_REPLACE_1
If you want
Urgent programming assignment Urgent programming assignment Hi,
I am an Indian student in USA.I have been able to write all the
java codes successfully , however this one is giving me tremors.Any help would be highly appreciated.I am attaching
urgent please, help!urgent please, help! how to make jTable unclickable and have unmovable columns, thanks in advance
import javax.swing.*;
import java.awt.*;
public class SimpleJTableExample{
public static void main(String[] args
Urgent: HttpRequest - JSP-ServletUrgent: HttpRequest Hi,
I want to send a http Request. Their will be another program which will receice the request process it and send back the response.
Example:
I have one page in which I am giving 2 numbers as input
Program Urgent - JSP-ServletProgram Urgent Respected Sir/Madam,
I am R.Ragavendran. I am in
urgent need of the coding. My requirement is as follows:
Beside Enter Employee ID... automatically with the selected Employee ID and Name.
Its Very
Urgent..
Please send me
urgent - Development processurgent i want total source code for this question.its
urgent and important.please .......
A squad of robotic rovers are to be landed by NASA on a plateau on Mars.
This plateau, which is curiously rectangular, must be navigated
urgent - Development processurgent i want total source code for this question.its
urgent and important.please .......
A squad of robotic rovers are to be landed by NASA on a plateau on Mars.
This plateau, which is curiously rectangular, must
pls help me it urgentpls help me it urgent hey, pls help me i want to know that can we call
java/.bat file from plsql/proceudre /trigger
pls help me it urgentpls help me it urgent hey, pls help me i want to know that can we call
java/.bat file from plsql/proceudre /trigger
pls help me it urgentpls help me it urgent hey, pls help me i want to know that can we call
java/.bat file from plsql/proceudre /trigger
URGENT: Export Table in Oracle db to CSV fileURGENT: Export Table in Oracle db to CSV file Hi,
Could you basically help me by providing a program in
Java. I want a program to connect and export a table in the oracle database to a folder in my local harddrive.
Thankyou
on-line examination project?(urgent pls)on-line examination project?(
urgent pls) Hello friends,
i am doing an on-line examination project. In A page i will get n(user requirement) questions from data base(question and five radio buttons) if the user had
URGENT !!!!! Any PERL language Expert . URGENT !!!!! Any PERL language Expert . I have input 50 amino acid sequences in NetPhos 2.0 server to know position of phosphorylation sites.
I want to extract or parse the position of phosphorylated serine, tyrosine
Need urgent help with C++ errors!Need
urgent help with C++ errors! hi,
i'm new to C++ programming.
this is my code...
i'm using Turbo C++.
It's showing so many errors!..
I don't know what to do.
Please help!!
#include<iostream.h>
void main
Program Very Urgent.. - JSP-ServletProgram Very
Urgent.. Respected Sir/Madam,
I am R.Ragavendran.. Thanks for your superb reply. I got the link you sent. But I find a simple problem... its most
urgent..
Thanks/Regards,
R.Ragavendran..
Hi friend
its urgent for me - Development processits
urgent for me Hi All,
this is kalavathi,i am new to alfresco.present i am using alfresco3.9b version.my problem is i was writing code in
java using alfresco.it is not working and i am not able to understand what