Category: FromSitesTree.com

Employment Laws: Employment Insurance, Quit, Fire #34

EI Overall EI and Quit EI and Fire From: http://sitestree.com/?p=4952 Categories:34Tags: Post Data:2009-02-22 07:59:10 Shop Online: <a href=’https://www.ShopForSoul.com/’ target=’new’ rel=”noopener”>https://www.ShopForSoul.com/</a> (Big Data, Cloud, Security, Machine Learning): Courses: <a href=’http://Training.SitesTree.com’ target=’new’ rel=”noopener”> http://Training.SitesTree.com</a> In Bengali: <a href=’http://Bangla.SaLearningSchool.com’ target=’new’ rel=”noopener”>http://Bangla.SaLearningSchool.com</a> <a href=’http://SitesTree.com’ target=’new’ rel=”noopener”>http://SitesTree.com</a> 8112223 Canada Inc./JustEtc: <a href=’http://JustEtc.net’ target=’new’ rel=”noopener”>http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) </a> Shop Online: <a …

Continue reading

Winnipeg Recruiters #34

Agency Name Specialize in Industries Adecco Employment Services Ltd General – most or all Andersen General – most or all Anokiiwin Employment Solutions Inc. Federal Government Brant & Associates General – most or all Careersource Recruitment Aerospace, Health care, Hospitality Centre for Aboriginal Human … General – most or all Charter Management Group (CMG) General …

Continue reading

JSP: Custom Tags #37

Custom Tags = alternatives to java beans for JSP = reduces some limitations of JavaBeans (in JSP) like to few methods to access the bean, you may still require to write much java code in JSP [that we want to avoid] Overview: Custom tag with no body should extend TagSupport class that implements Tag interface …

Continue reading

Manitoba: Income : Income Tax #34

Your income and income tax http://www.cra-arc.gc.ca/tax/individuals/faq/taxrates-e.html Federal Tax * 15% on the first $37,885 of taxable income, + * 22% on the next $37,884 of taxable income (on the portion of taxable income between $37,885 and $75,769), + * 26% on the next $47,415 of taxable income (on the portion of taxable income between $75,769 …

Continue reading

JSP: Random Information #37

Three JSP constructs: scripting elements, actions, directives Scripting elements: expressions, scriptlets, declarations Expression = translates to println in servlets in _jspService methods < % = expression %> < % = new java.util.Date() %> inserts values directly to the output scriptlet: block of java code : directly inserted into the related servlets in the _jspService method: …

Continue reading

JSP Expression Language #37

Expression Language——————-Introduced in JSP 2.0You can write short expressions for different operations [other than using functions]If you want to ignore EL in any page addSome examplesEL=> what does it mean?${3+2-1}=> ${3+2-1} ${“1″+2} => ${“1″+2} ${3%2} => ${3%2} ${(8 div 2) mod 3} => ${(8 div 2) mod 3} ${1<2} => ${1<2} From: http://sitestree.com/?p=4793 Categories:37Tags: Post …

Continue reading

JSP Tags #37

JSP Tag Library (JSTL) JSP Disadvantage 1. Java code embedded in scriptlets make the code difficult to understand 2. Reduced code reusability 3. Difficult to modify [Java Code] 4. Java code needs to use Class Casting JSTL Advantages 1. Better code 2. Enhanced Code reusability 3. No type casting from the request and session objects …

Continue reading

SQL Server Short-notes at JustETC #38

How to optimize query response time? How to optimize SQL Server Cursors What are cursors? SQL Server Hints Scalability: SQL Server 2005 Scaling Out Dynamic Management Views SQL Server Database System Tuning SQL Server: Index SQL Server : Backups SQL Server Short-notes at JustEtc SQL Server Short-notes at JustEtc From: http://sitestree.com/?p=5257 Categories:38Tags: Post Data:2009-08-28 05:17:15 …

Continue reading

Creating Custom Tags in JSP #37

How to create custom tags in JSP?You can create custom tags in JSP. Steps:—–1. You have to create a Java file that will define the operation of the custom tag2. For the Java file, you have to extend javax.servlet.jsp.tagext.BodyTagSupport class3. in your implementation, you have to override (re-write) doStartTag(), doEndTag(), and doAfterBody() methods4. Create tag …

Continue reading

SQL Server : Backups #38

Why are backups needed? To protect accidental data loss. Still, if you use highly available and fault-tolerant systems like SAN, and RAID, you may need to backup your database regularly. These fault tolerant systems can not provide accidental data delete by users, accidental data corruption from software and hardware failure. If you have a disaster …

Continue reading