Wednesday, September 22, 2010

Privacy Policy

Privacy Policy of vardhan-justlikethat.blogspot.in


If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at dsharshavardhan@gmail.com.

Data Controller and Owner

Log Files
Like many other Web sites, vardhan-justlikethat.blogspot.in makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses and other such information are not linked to any information that is personally identifiable. 

Cookies and Web Beacons 
vardhan-justlikethat.blogspot.in does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser. 

DoubleClick DART Cookie 
Google, as a third party vendor, uses cookies to serve ads on vardhan-justlikethat.blogspot.in.
Google's use of the DART cookie enables it to serve ads to users based on their visit to vardhan-justlikethat.blogspot.in and other sites on the Internet. 
Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - http://www.google.com/privacy_ads.html 

Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include.

Google Adsense
These third-party ad servers or ad networks use technology to the advertisements and links that appear on vardhan-justlikethat.blogspot.in send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see. vardhan-justlikethat.blogspot.in has no access to or control over these cookies that are used by third-party advertisers. 
You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. vardhan-justlikethat.blogspot.in privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.


If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites.

Opening New Window in JSF

Create a temp jspx page and redirect to the page by calling ur param values.
while redirecting to the temp jspx page, call onload an action which calls ur actually method to get values.

Call the below line from ur actually Jspx page.
oncomplete="window.open('redirect.jspx')" action="actuallyBean.redirectMethod"

In ur actuallyBean, redirectMethod read the parameters using request values

public String redirectMethod()
{
      HttpServletRequest request=(HttpServeltRequest)FacesContext.getCurrentInstance()
.getExternalContext().getRequest();
     session.setAtribute("valueInSession", request.getPerameter("id")) ;
      return "";


keep this value in httpsession, until it redirects to the  redirect.jspx.


now, In redirect.jspx, onload call the action
In action get the values from the httpsession and removeattribute from httpsession.

This redirect of page, opening new window takes less than sec, so There won't be any problem.