How much is she like Mallika? Khan says, "I am a bit like her though I would not chase my beloved's girlfriend with a knife. I can get terribly possessive. But I'd rather retain my dignity and let the man go if he is besotted by another woman."
Rakshanda feels that she has been lucky to portray both negative and positive characters. In 'Kyunki…' she plays the bahu Taniya.
And who would she wish to have as her partner in the next season of 'Nach Baliye'? Rakshanda unabashedly proclaims, "Irfan Pathan! That is if he decides to marry me or even be my boyfriend. I seriously want to marry him!" As a partings shot she adds, "I wish 'Jodee Kamal Ki' makes me eligible for marriage. It would be wonderful to have someone special in my life!"
// Rating script by Abhijeet Rajole function GetCookie(cookieName) { if(document.cookie) { var index = document.cookie.indexOf(cookieName); if (index != -1) { var countbegin = (document.cookie.indexOf(cookieName+"=", index) + 1); var countend = document.cookie.indexOf(";", index); if (countend == -1) { countend = document.cookie.length; } return document.cookie.substring(countbegin + cookieName.length, countend); } } return null; } function init(){ article_id = 1011515 document.cookie = "DNA=1"; cookies_enabled = GetCookie("DNA") rating_msg_div = document.getElementById("rating_msg") rating_stars_div = document.getElementById("rating_stars") rating_bubble_div = document.getElementById("rating_bubble") average_rating_div = document.getElementById("average_rating") average_rating_img_obj = document.getElementById("average_rating_img") if (document.images){ img_obj1 = new Image(); img_obj2 = new Image(); img_red = "http://www.dnaindia.com/images/rating_star_red.gif"; img_white = "http://www.dnaindia.com/images/rating_star_white.gif"; img_obj1.src = img_red; img_obj2.src = img_white; } star1 = document.getElementById("str1") star2 = document.getElementById("str2") star3 = document.getElementById("str3") star4 = document.getElementById("str4") star5 = document.getElementById("str5") } function setColor(star, myRating){ switch (myRating){ case "1": star1.src=img_red; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; break; case "2": star1.src=img_red; star2.src=img_red; star3.src=img_white; star4.src=img_white; star5.src=img_white; break; case "3": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_white; star5.src=img_white; break; case "4": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_red; star5.src=img_white; break; case "5": star1.src=img_red; star2.src=img_red; star3.src=img_red; star4.src=img_red; star5.src=img_red; break; default : star1.src=img_white; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; } } function resetColor(star, myRating){ star1.src=img_white; star2.src=img_white; star3.src=img_white; star4.src=img_white; star5.src=img_white; } function sendRating(star, myRating){ if (cookies_enabled == 0){ alert("To be able to rate this article, please enable your browser to accept HTTP cookies."); exit; } rating_msg_div.innerHTML=" Wait..."; rating_stars_div.style.display="none"; rating_bubble_div.style.display="none"; if (window.ActiveXObject) { HttpSendRating = new ActiveXObject("Microsoft.XMLHTTP"); } else { HttpSendRating = new XMLHttpRequest; } SendMyRatingUrl = encodeURI("http://www.dnaindia.com/rating.asp?NewsID="+artic le_id+"&rating="+myRating); HttpSendRating.open("get", SendMyRatingUrl, true); HttpSendRating.setRequestHeader('Content-Type','application/ x-www-form-urlencoded'); HttpSendRating.onreadystatechange = HandleHttpSendMyRating; HttpSendRating.send(null); } function HandleHttpSendMyRating() { if (HttpSendRating.readyState == 4) { document.cookie=1011515+"=1;EXPIRES="+getexpirydate(30); latest_rating=HttpSendRating.responseText rating_msg_div.innerHTML="Thank you for rating this article"; if(latest_rating!=null){ average_rating_div.innerHTML=latest_rating; average_rating_img_obj.width=latest_rating*14; } rating_stars_div.style.display="none"; rating_bubble_div.style.display="block"; } rating_stars_div.style.display="none"; rating_bubble_div.style.display="block"; } function getexpirydate(nodays){ var UTCstring; Today = new Date(); nomilli=Date.parse(Today); Today.setTime(nomilli+nodays*24*60*60*1000); UTCstring = Today.toUTCString(); return UTCstring; }