-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrainSchedule.jsp
336 lines (275 loc) · 9.53 KB
/
TrainSchedule.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<%@page import="java.sql.DriverManager"%>
<%@page import="java.sql.ResultSet"%>
<%@page import="java.sql.PreparedStatement"%>
<%@page import="java.sql.Connection"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> Train Schedule Insertion </title>
<meta name="keywords" content="Home" />
<link href="./css/templatemo_style.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.ennui.contentslider.css" rel="stylesheet" type="text/css" media="screen,projection" />
<link title="theme" type="text/css" href="timepicker/jquery-ui-1.8.17.custom.css" media="screen" rel="Stylesheet" id="themeCSS" />
<link rel="stylesheet" media="screen" href="timepicker/ui.timepickr.css" />
<script type="text/javascript" src="timepicker/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="timepicker/jquery.timepickr.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#timestart').timepickr({
rangeMin: ['00','05','10','15','20','25','30','35','40','45','50','55'],
convention: 24} ).focus(); //timestart.timepickr
}); //document ready
</script>
<script type="text/javascript">
$(document).ready(function(){
for(var i=1; i<60; i++){
$('#timestart'+i).timepickr({
rangeMin: ['00','05','10','15','20','25','30','35','40','45','50','55'],
convention: 24} ).focus(); //timestart.timepickr
}
}
); //document ready
</script>
<%!
Connection con = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
public void jspInit(){
try{
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/train","root","");
}
catch(Exception e ){
e.printStackTrace();
}
}
%>
<!-- Input Validation Script -->
<script type="text/javascript" src="InputValidation.js">
</script>
<script type="text/javascript">
function validate(){
if(Empty(document.form1.arv1)){ //Empty Field Validation Call
if(Empty(document.form1.dep1)){
if(Empty(document.form1.arv2)){
if(Empty(document.form1.dep2)){
document.form1.submit();
}
}
}
}
}
</script>
<script type="text/javascript">
function num2(ele){
var val = ele.value;
var len = val.length;
if(val.search(/[^0-9\:]/) != -1){ // \D is For Not A Digit searc i.e [^0-9]
alert("Enter Only Digits and :");
ele.value = ele.value.substring(0,len-1);
ele.focus();
return false;
}
return true;
}
</script>
<!-- Special Font & Symbol -->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(function(){
$("#header").load("header.html");
});
</script>
<script>
$(function(){
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="templatemo_wrapper">
<div id="templatemo_header">
<div id="site_title">
<h1><a href="home.jsp">
<img src="./images/logo.jpg" alt="Commuters Guide" width="480" height="93" />
</a></h1>
</div>
<!-- end of templatemo_menu -->
<div class="cleaner"></div>
</div> <!-- end of header -->
<div id="header"></div>
<div id="templatemo_content">
<!-- Form Body -->
<div>
<form name="form1" action="./TrainSchedule1.jsp">
<h1 align="center"> Updation Of Train Schedule</h1>
<%
String trainno = request.getParameter("trainno");
String tname= request.getParameter("tname");
String type= request.getParameter("type");
String src= request.getParameter("src");
String dest= request.getParameter("dest");
String srcid= request.getParameter("srcid");
String destid= request.getParameter("destid");
String km= request.getParameter("km");
int sl = 0;
int a1 = 0;
int a2 = 0;
int a3 = 0;
try{
sl =Integer.parseInt(request.getParameter("sl"));
a1 = Integer.parseInt(request.getParameter("a1"));
a2 = Integer.parseInt(request.getParameter("a2"));
a3 = Integer.parseInt(request.getParameter("a3"));
}
catch(Exception e){ //to catch exceptions of null values
}
String[] days = new String[7];
String[] day=request.getParameterValues("days");
if (day != null)
{
for (int i = 0; i < day.length; i++)
{
days[i] = day[i];
%>
<input type="hidden" name="day" value=<%= days[i] %> />
<%
}
}
%>
<!-- Values to forward to the next page -->
<input type="hidden" name="srcid" value=<%= srcid%> />
<input type="hidden" name="destid" value=<%= destid%> />
<input type="hidden" name="km" value=<%= km%> />
<input type="hidden" name="sl" value=<%= sl%> />
<input type="hidden" name="a1" value=<%= a1%> />
<input type="hidden" name="a2" value=<%= a2%> />
<input type="hidden" name="a3" value=<%= a3%> />
<div id="divHead">
<br />
<table align="center">
<tr>
<th colspan="2"> Train Details </th>
</tr>
<tr>
<td><label> Train No </label></td>
<td><input type="text" name="trainno" value="<%= trainno %>" readonly="readonly" tabindex="-1"/></td>
</tr>
<tr>
<td><label> Train Name </label></td>
<td><input type = "text" name="tname" value="<%= tname%>" readonly="readonly" tabindex="-1"/></td>
</tr>
<tr>
<td><label> Type </label></td>
<td><input type = "text" name="type" value="<%= type %>" readonly="readonly" tabindex="-1"/></td>
</tr>
<tr>
<td><label> Source </label></td>
<td><input type = "text" value="<%= src %>" readonly="readonly" tabindex="-1"/></td>
</tr>
<tr>
<td><label> Destination </label></td>
<td><input type = "text" value="<%= dest %>" readonly="readonly" tabindex="-1"/></td>
</tr>
</table>
</div>
<div id="divTable" align="center" style="">
<br />
<hr />
<h4> Schedule Table </h4>
<span style=" font-size: 14px; color: red;"> Use 24hr Format</span>
<table id="table1" border="1" bordercolor=#333333>
<tr bgcolor=#333333 style="color: white">
<th> Station No </th>
<th> Kilometers</th>
<th> Station Name </th>
<th> Arrival Time </th>
<th> Departure Time </th>
</tr>
<%
String id = request.getParameter("srcid"); //TO FETCH THE SOURCE STATION ID
int len = id.length();
String id1 = id.substring(0,len-2); //To get the starting digits of station id by eliminating the last to digits
id1 = id1 + "%%"; //Adding %% to find the stations which come under the range of station id ex: 1%% i.e 100 to 199
String sql1="select * from route where station_id like '"+id1+"' "; //SQL Query that gets station id's which come under one route
pstmt = con.prepareStatement(sql1);
rs = pstmt.executeQuery();
int i =1;
while(rs.next()){
%>
<tr>
<td> <input type="text" name="station<%=i %>" size="4" readonly="readonly" tabindex="-1" value="<%= rs.getInt("station_id") %>" /> </td>
<td> <input type="text" size="5" readonly="readonly" tabindex="-1" value="<%= rs.getInt("km")%>" /> </td>
<td> <input type="text" readonly="readonly" tabindex="-1" value="<%= rs.getString("station_name")%>" /> </td>
<td> <input type="text" id="timestart<%=i %>" readonly="readonly" name="arv<%=i %>" size="8" maxlength="5" onkeyup="num2(this)" onkeydown="num2(this)" style="font-weight: bold; background-color: white;" /> </td>
<td> <input type="text" id="timestart<%=i+20 %>" readonly="readonly" name="dep<%=i %>" size="8" maxlength="5" onkeyup="num2(this)" onkeydown="num2(this)" style="font-weight: bold; background-color: white;" /> </td>
</tr>
<%
i=i+1;
}
%>
</table>
<p>
<input type="button" value="Save" onclick="validate()" />
</p>
</div>
</form>
</div>
<!-- Form Body -->
</div> <!-- end of templatemo_content -->
<div id="templatemo_sidebar">
<div id="request_a_quote">
<%
try{
if(session.isNew()){ //session.isNew is true for the first time when the page is loaded
}
else{
String uname = (String)session.getAttribute("uname");
String ssid = (String)session.getAttribute("sid");
String author = (String)session.getAttribute("author");
String error = (String)session.getAttribute("error");
String sessionid = (String)session.getId();
if(error=="Y"){ //error=Y is set when the email and password are mismatched
}
else if(ssid == sessionid) { //To verify the session id of page and sid i.e session id set during session creation match
%>
<h2> Login Details</h2><br/>
<p style="font-size: 12pt">
<label style="color:#DD0000;"> UserName</label> <%= uname %> <br/>
<label style="color:#DD0000;"> Authority </label> <%= author.toUpperCase() %> <br/>
<br/>
<a href="<%= author%>home.jsp"> <%= author.toUpperCase() %> Home</a>
<a href='Logout.jsp'> Logout</a>
</p>
<%
}
else{ //if all cases fail login is prompted
}
}
}
catch(Exception e){
}
%>
</div>
<div id="sidebar_featured_project">
<div class="cleaner"></div>
<div class="cleaner"></div>
<div class="cleaner"></div>
<div class="cleaner"></div>
<h3>Information</h3>
<div class="right" >
<h6 ><a href="SearchTrain.jsp">Trains Btw Stations</a></h6>
<h6><a href="SearchSchedule.jsp">Train Schedules</a></h6>
<h6><a href="ViewFare.jsp">Fare List</a></h6>
<h6><a href="http://www.indianrail.gov.in" target="_new">Other Railway Websites </a></h6>
</div>
<div class="cleaner"></div>
</div>
<div class="cleaner"></div>
</div>
</div> <!-- end of wrapper -->
<div id="footer"></div>
</body>
</html>