JSP:为什么会话结构中有这么多错误?

时间:2016-07-19 06:12:41

标签: jsp

我最近开始使用JSP培训,并尝试从在线资源中重建一个简单的会话。

的index.html

<html>  
 <body>  
  <form action="welcome.jsp">  
   <input type="text" name="uname">  
   <input type="submit" value="go"><br/>  
  </form>  
 </body>  
</html>`

的welcome.jsp

<html>  
 <body>  
  <%   

   String name=request.getParameter("uname");  
   out.print("Welcome "+name);  

   session.setAttribute("user",name);  

   <a href="second.jsp">second jsp page</a>  

  %>  
 </body>  
</html>  

second.jsp

<html>  
 <body>  
  <%   

  String name=(String)session.getAttribute("user");  
  out.print("Hello "+name);  

  %>  
 </body>  [enter image description here][1]
</html> 

包含错误消息的图片

http://i.stack.imgur.com/AVNmH.jpg

我不明白为什么会有这么多错误,因为我严格遵循教程。

1 个答案:

答案 0 :(得分:0)

我认为是因为您在scriptlet中包含了func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize { //UIScreen.mainScreen().bounds.width return CGSizeMake(self.collectionView.bounds.size.width - 6, self.collectionView.bounds.size.height) } func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAtIndex section: Int) -> CGFloat { return 6 } func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets { return UIEdgeInsetsMake(0, 3, 0, 3) } func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAtIndex section: Int) -> CGFloat { return 6 } 链接:

a

您不应该使用scriptlet Read this for more info.