<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>intro to all Computer programming,how to,guide,examples, - JSP Tutorials</title><link>http://teachmeasp.net/</link><description>Asp tutorials,Php tutorials,jsp tutorials,Html tutorials,cgi tutorials,xml tutorials, examples,articles, resources,source code, and links - </description><generator>RainbowSoft Studio Z-Blog 1.8 Spirit Build 80722</generator><language>zh-CN</language><copyright>Copyright 2010 teachmeasp.net. Some Rights Reserved.</copyright><pubDate>Sun, 05 Sep 2010 18:52:52 +0800</pubDate><item><title>Ajax Dragging and Dropping</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/89.html</link><pubDate>Thu, 13 Nov 2008 11:45:07 +0800</pubDate><guid>http://teachmeasp.net/post/89.html</guid><description><![CDATA[Using AJAX, user interfaces such as dragging and dropping become possible. We will briefly cover that here. <br/>Dragging and dropping involves two items <br/><br/>A dragging source, and <br/>A drop target. <br/>The source is something that you click on, and drag around. The target is where you release the source, and which potentially does something useful with it! <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/89.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=89</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=89&amp;key=8c9d1db8</trackback:ping></item><item><title>Ajax Saving Your Own Data in the Session</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/88.html</link><pubDate>Thu, 13 Nov 2008 11:44:52 +0800</pubDate><guid>http://teachmeasp.net/post/88.html</guid><description><![CDATA[Earlier we learned about the session, and how to use it for form elements. <br/>The session is a useful concept, and in addition to form elements, it can also be helpful to save your own data for a user. <br/><br/>The Jaxcent "session" matches the "session" of a Java Application Server if Jaxcent is running in a Java Application Server. Therefore if you have a legacy web application using a Java Application Server, you can use the session from both Jaxcent pages and the Application Server servlets/JSPs, and they can co-operate. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/88.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=88</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=88&amp;key=91abbf9e</trackback:ping></item><item><title>Ajax Creating New Elements and Moving Existing Elements</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/87.html</link><pubDate>Thu, 13 Nov 2008 11:44:36 +0800</pubDate><guid>http://teachmeasp.net/post/87.html</guid><description><![CDATA[Sometimes just hiding and showing page elements is appropriate. At other times, it is more appropriate to create new elements and insert them in the page. Sometimes, elements just need to be moved around! <br/>In AJAX programming, great effects can be achieved using all these techniques. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/87.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=87</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=87&amp;key=95e48e7c</trackback:ping></item><item><title>ajax Hiding and Showing Page Elements</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/86.html</link><pubDate>Thu, 13 Nov 2008 11:44:14 +0800</pubDate><guid>http://teachmeasp.net/post/86.html</guid><description><![CDATA[A powerful UI technique is to hide and show elements to the user as needed. <br/>Any individual elements can be hidden or shown by calling the "hide()" or "show()" methods. <br/><br/>But instead of hiding and showing various blocks of elements individually, in many cases it is much simpler to put them inside DIV tags, and then to hide/show entire DIVs. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/86.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=86</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=86&amp;key=0773588d</trackback:ping></item><item><title>Hello, World</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/85.html</link><pubDate>Thu, 13 Nov 2008 11:43:51 +0800</pubDate><guid>http://teachmeasp.net/post/85.html</guid><description><![CDATA[The tutorial server is already set up with two files: <br/>A HelloWorld.html file <br/>A HelloWorld.java file <br/>In addition, the default JaxcentConfig.xml file already map these two -- in other words, it tells Jaxcent to connect the HelloWorld.html file with the HelloWorld.java code. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/85.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=85</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=85&amp;key=ef123060</trackback:ping></item><item><title>Ajax Getting Started</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/84.html</link><pubDate>Thu, 13 Nov 2008 11:43:31 +0800</pubDate><guid>http://teachmeasp.net/post/84.html</guid><description><![CDATA[Getting Started<br/>Installing the Tutorial Server<br/>In this tutorial, we want to focus on the AJAX details rather than installation and setup issues. There are various different setup scenarios available for Jaxcent, and discussing them will take the focus away from the actual programing. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/84.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=84</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=84&amp;key=7bcca92a</trackback:ping></item><item><title>Protecting your website with a login page</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/83.html</link><pubDate>Thu, 13 Nov 2008 11:42:29 +0800</pubDate><guid>http://teachmeasp.net/post/83.html</guid><description><![CDATA[Some sites require that all users log-in using a username and password, before being able to visit any page. <br/>This can be done using JSP sessions or servlets, and in fact this was a common technique for a while.  But starting with a new release of Servlets specifications (2.2) from Sun, this feature is now very simple to implement.   <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/83.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=83</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=83&amp;key=f74b8cf7</trackback:ping></item><item><title>Techniques for form editing</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/82.html</link><pubDate>Thu, 13 Nov 2008 11:42:18 +0800</pubDate><guid>http://teachmeasp.net/post/82.html</guid><description><![CDATA[A tag library such as the one that comes with the Blazix server, may not be available in your environment.  How can you allow similar features without using a tag library? <br/>It is a little tedious, but it can be done.  Basically, you must edit each HTML tag yourself, and put in a default value.  The following examples shows how we modify GetName.jsp to provide features similar to blx:getProperty but with manual HTML tag editing: <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/82.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=82</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=82&amp;key=52427b38</trackback:ping></item><item><title>Tag libraries</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/81.html</link><pubDate>Thu, 13 Nov 2008 11:42:05 +0800</pubDate><guid>http://teachmeasp.net/post/81.html</guid><description><![CDATA[JSP Tutorial <br/> <br/>Tag libraries<br/>JSP 1.1 introduces a method of extending JSP tags, called "tag libraries".  These libraries allow addition of tags similar to jsp:include or jsp:forward, but with different prefixes other than jsp: and with additional features. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/81.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=81</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=81&amp;key=15d565e9</trackback:ping></item><item><title>Beans and Form processing</title><author>a@b.com (rain)</author><link>http://teachmeasp.net/post/80.html</link><pubDate>Thu, 13 Nov 2008 11:41:51 +0800</pubDate><guid>http://teachmeasp.net/post/80.html</guid><description><![CDATA[JSP Tutorial <br/> Just After Sunset<br/><br/>Stephen King<br/>The Graveyard Book<br/><br/>Neil Gaiman, Dave Mckean<br/>  <br/>Beans and Form processing<br/>Forms are a very common method of interactions in web sites.  JSP makes forms processing specially easy. <br/>The standard way of handling forms in JSP is to define a "bean".  This is not a full Java bean.  You just need to define a class that has a field corresponding to each field in the form.  The class fields must have "setters" that match the names of the form fields.  For instance, let us modify our GetName.html to also collect email address and age. <br/>...]]></description><category>JSP Tutorials</category><comments>http://teachmeasp.net/post/80.html#comment</comments><wfw:comment>http://teachmeasp.net/</wfw:comment><wfw:commentRss>http://teachmeasp.net/feed.asp?cmt=80</wfw:commentRss><trackback:ping>http://teachmeasp.net/cmd.asp?act=tb&amp;id=80&amp;key=f2db0518</trackback:ping></item></channel></rss>
