Hi all,
1] I have to create one html file which uses javascript.
2] HTML page can be accessed by user and can fill the;
[A] Folder path along with file name
3] There will be a button, after click on that a batch file [already present but without any values] will run with new values provided by javascript.
4] Through that batch file i will process XML to HTML conversion.
5] After completion of batch 1 message should be given as "Process Over"
Purpose of this -
User will not interact directly with batch file. He/ She will just paste the path and file name and click on button.
Rest of the things will done in background.
User can see only output, without interrupting the actual process.
My HTML looks like below,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Welcome to this project</title>
</head>
<body>
<h1 style="text-align:center;">Wel-come</h1>
<hr />
<table>
<tr>
<td>Please enter file name here</td>
<td><input name="file_name" type="text" size="50" maxlength="50" id="fn1" /></td>
</tr>
<tr>
<td>Please enter folder path here</td>
<td><input name="folder_name" type="text" size="50" maxlength="20" id="fldn1" /></td>
</tr>
</table>
</body>
</html>
Please suggest is this possible? if yes how it can be done?
Any help will be appreciated as I am struggling this very much.
Cheers,
Mahesh :(