'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Sameer Dattani

Sammir Dattani, also known as Dhyan (in the Kannada film industry), is an Indian film actor who acts in Bollywood, the Hindi film industry, and Sandalwood, the Kannada film industry.

Career

Born into a Gujarati family in Bombay, Dattani has worked in Hindi, Kannada, and Tamil cinema, He is fluent in several languages.

Dattani started his Hindi film career with Rajshri Productions. His first Hindi film Uuf Kya Jaadoo Mohabbat Hai was followed by roles in Madhur Bhandarkar's Corporate and Vikram Bhatt's Life Mein Kabhie Kabhie as well as films such as Pyar Mein Twist. In the Hindi film Mukhbir, directed by Mani Shankar, Dattani played the lead role of an undercover police informer.

Dattani appeared in the Kannada-language film Nanna Preethiya Hudugi which earned him the best debutant award in the South. Besides Monalisa, other Kannada film appearances include Amruthadhare.

Dattani's first Tamil film, produced by Gemini Films, was Kutty with Shriya Saran.

Shyam Benegal cast him in Well Done Abba (2010), alongside Boman Irani and Minissha Lamba. After premiering at international film festivals in Montreal, Dubai and London, it had its commercial release 26 March 2010.

Podcasts:

  • Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV

    Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV -------------------------------------------------------------- National TV is the most popular media organization in Karnataka, trusted for its highest standards, ethics and quality. We cover News, Politics, Current Affairs, Metro Stories, Film News, Interviews, Lifestyle, Social Responsibility & Awareness. Be the First to get: - Breaking local, regional, national and international news - Extensive Hyper Local News - In-depth coverage of Karnataka’s Politics - Detailed National and Regional News - The Latest Sports Matches, Scores and more - The Widest Cinema Coverage and Biggest Star Stories - Interesting Stories from Across the World __________ #nationaltvnews #nationaltvkannada #ntvnews...

    published: 16 Jul 2024
  • Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hai

    Watch this beautiful romantic hindi song Shehzadi Hai Koi from the hindi blockbuster movie Uff Kya Jadoo Mohabbat Hai. Starring Sameer Dattani & Pooja. Film directed by Manjo Bhatia. Producer Rajat Barjatya. Music composed by Sandesh Shandilya. Subscribe and Stay Tuned - http://www.youtube.com/subscription_center?add_user=rajshri Regular Facebook Updates http://www.facebook.com/RajshriDotCom. Twitter Updates https://twitter.com/#!/RajshriDotCom. Join us on G+ - https://plus.google.com/111699328828561769924/posts Subscribe to Rajshri - https://bit.ly/2NFOiwm Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us...

    published: 28 Mar 2008
  • Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattani

    Watch Pehla Din Hai College Ka- Music Video - Raima Sen, Sameer Dattani. Pehla Din Hai College Ka is a sweet song about the young boy's apprehension for his future. Click here to buy this song on itunes: https://itunes.apple.com/us/album/college-ke-din/id334061012 Operator Codes: Pehla Din Hai College Ka : Reliance Subscribers SMS CT 6433603 To 51234 MTS Subscribers SMS CT 8801077 To 55777 Subscribe to Rajshri - https://bit.ly/2NFOiwm Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com

    published: 11 Feb 2009
  • Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwal

    Watch and Enjoy the song " Uuf Kya Jaadoo Mohabbat Hai" sung by Sunidhi Chauhan, from the hit movie Uuf Kya Jaadoo Mohabbat Hai starring Sameer Dattani, Pooja Kanwal in lead roles only on Bollywood Classics Movie: Uuf Kya Jaadoo Mohabbat Hai Singers: Sunidhi Chauhan Music: Sandesh Shandilya Cast: Sameer Dattani, Pooja Kanwal, Sachin Khedekar Director: Manoj J. Bhatia Produced By: Rajjat A. Barjatya Subscribe to Bollywood Classics for Superhit Songs : http://bit.ly/SubscribeToBollywoodClassics #UufKyaJaadooMohabbatHai #SameerDattani

    published: 05 May 2019
  • Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songs

    Celebrate the season of Love with Rajshri's popular Music video "Valentine's Day" featuring Raima Sen & Sameer Dattani from the Music album 'College Ke Din. #HappyValentinesDay2019 #ValentinesDay #ValentineDaySongs Music Video: Valentine's Day Album: College Ke Din Singer: Manohar Shetty, Sonali Vajpayee Music Label: Rajshri Music Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com

    published: 13 Feb 2019
  • Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songs

    Movie: Mallika (2010) Music Director: Pritam Chakraborty, Shamir Tandon, Akbar Sami Singer: Pamela Jain Director: Wilson Louis Woh Bhooli Dastan Lo Phir Yaad Aa Gai is a song from the 2010 movie Mallika starring Sameer Dattani, Himanshu Malik, Rajesh Khera. The lyrics were penned by Sudhakar Sharma. From the latest Bollywood songs to the oldest, SUBSCRIBE now to http://www.YouTube.com/FilmiGaane To see all the latest music playlists that we've created just for you, click here - http://www.youtube.com/user/filmigaane/videos?sort=dd&flow=list&view=1 Connect with us on :- Facebook - http://www.Facebook.com/FilmiGaane Twitter - http://Twitter.com/FilmiGaane Join us on Pinterest - http://pinterest.com/shemaroo Circle & Follow us on google.com/+filmigaane . Download Filmi Gaane App - http...

    published: 20 Aug 2015
  • Sameer Dattani talks about his role in film Marathon 2007

    I am a football player who lives in Goa he realized one day the pain in his foot and its cancer and how he beat cancer how he survived his life and at last he ran for a Marathon challenge to himself and his faith. Today we are shooting the last sequence of the race we are covering 42 km by walking and running, This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K collection from South Asia. The collection comprises of 150, 000+ hours of high quality broadcast imagery, mostly shot on 4K, 200 fps slow motion and Full HD. Write to us for licensing this footage on a broadcast format, for use in your production! We are happy to be commissioned to film for you or else provide you with broadcast crewing and production solutions acro...

    published: 01 Aug 2024
  • Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no records

    Bollywood actor Sameer Dattani on his character in Mani Shankar's Mukhbiir. Sameer Dattani: "It's a very different film. It's based on intelligence department. It's the story of Mukhbiir which means informer spy and it's a story of a man with no name and a lot of names. He works with the government but still he has no record, no file, even if he died nobody will know. It's such kind of a story. It's very soulful also. It connects with people. It is a challenging character for me and my director Mani Shankar helped me a lot. It is very realistic in fact. After years of research and inspired by real-life incidents and real-life stories, Mani Shankar has written this story." This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K c...

    published: 22 Mar 2020
  • Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song By Rajshri

    Valentine's Day Special Song Feat. Sameer Dattani & Raima Sen Watch this "Valentine's Day" Music Video in HD 1080 : https://www.youtube.com/watch?v=GFFlU-YFI9c Valentines Day is a romantic and a tuneful song. Raima Sen and Samir Dattani look cute in the song adding more spice to the video. Click here to buy this song on itunes: https://itunes.apple.com/us/album/college-ke-din/id334061012 Subscribe and Stay Tuned - http://www.youtube.com/subscription_center?add_user=rajshri Find us on google plus: https://plus.google.com/100462035193279555026/posts Follow us on Pinterest : http://pinterest.com/rajshridotcom/ Like and Share your favorite videos on Facebook: https://www.facebook.com/rajshridotcom Follow us on Twitter: https://twitter.com/Rajshri Subscribe to Rajshri - https:/...

    published: 11 Feb 2009
  • Sameer Dattani on his character in Life Mein Kabhie Kabhiee

    Sameer Dattani who plays the role of Jai Prakash Gokhale in the film Life Mein Kabhie Kabhiee on playing the role and the film itself. Sameer Dattani: "Kabhie Kabhiee is a story that makes you happy when you hear it and life is all about being happy as we know. And I got a character that will make you happy. So in life, Kabhie Kabhiee makes a good film. We all have achieved and we all haven't. And if you're asking me indirectly who wins in the film? For that you have to watch the film." This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K collection from South Asia. The collection comprises of 150, 000+ hours of high quality broadcast imagery, mostly shot on 4K, 200 fps slow motion and Full HD. Write to us for licensing this fo...

    published: 14 Mar 2020
developed with YouTube
Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV
8:37

Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV

  • Order:
  • Duration: 8:37
  • Uploaded Date: 16 Jul 2024
  • views: 1344
Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV -------------------------------------------------------------- National TV is the most popular media organization in Karnataka, trusted for its highest standards, ethics and quality. We cover News, Politics, Current Affairs, Metro Stories, Film News, Interviews, Lifestyle, Social Responsibility & Awareness. Be the First to get: - Breaking local, regional, national and international news - Extensive Hyper Local News - In-depth coverage of Karnataka’s Politics - Detailed National and Regional News - The Latest Sports Matches, Scores and more - The Widest Cinema Coverage and Biggest Star Stories - Interesting Stories from Across the World __________ #nationaltvnews #nationaltvkannada #ntvnews #nationalkannadanews #ntvkannadanews #kannadanews #nationaltv #nationaltvlive #ntvkannada #nationalnews Corporate Office Address: Banagere Media’s, No. 1022, 3rd Floor, Panchajanya Towers, Dr. Rajkumar Road, 4th Block, Rajajinagar, Bangalore-560010, India. For Business & Advertisement Contact : 9611144559 Email: nationaltvkannada@gmail.com -------------------------------------------------------------- Like us on FaceBook: https://www.facebook.com/nationaltvnews/ Follow us on Instagram: https://www.instagram.com/nationaltvn... Subscribe to Youtube Channel: https://www.youtube.com/c/NATIONALTVN... Follow us on Twitter: https://twitter.com/nationaltvnewz Official website: http://www.nationaltvkannada.com ----------------------------------------- #nationaltvnews #nationaltvkannada #ntvNational #ntvnews #nationalkannadanews #ntvkannadanews #kannadanews #nationaltv #nationaltvlive #ntvkannada #nationalnews #sameerdattani #monalisa #kannadamovies #20yearsold #20yearscelebration #20years #kannada #rockingstaryash #yash #yashboss #sandalwood #darshanthoogudeepa #dboss #viral #viralvideo #trending #trendingvideo #explore #explorepage
https://wn.com/Sameer_Dattani_ಹಿಟ್_ಮೇಲೆ_ಹಿಟ್_ಕೊಟ್ಟು_ನಾಪತ್ತೆ_ಪ್ರೀತಿಯ_ಹುಡುಗ_ಧ್ಯಾನ್_ಮತ್ತೆ_ಪ್ರತ್ಯಕ್ಷ_|_National_Tv
Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hai
5:14

Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hai

  • Order:
  • Duration: 5:14
  • Uploaded Date: 28 Mar 2008
  • views: 84222
Watch this beautiful romantic hindi song Shehzadi Hai Koi from the hindi blockbuster movie Uff Kya Jadoo Mohabbat Hai. Starring Sameer Dattani & Pooja. Film directed by Manjo Bhatia. Producer Rajat Barjatya. Music composed by Sandesh Shandilya. Subscribe and Stay Tuned - http://www.youtube.com/subscription_center?add_user=rajshri Regular Facebook Updates http://www.facebook.com/RajshriDotCom. Twitter Updates https://twitter.com/#!/RajshriDotCom. Join us on G+ - https://plus.google.com/111699328828561769924/posts Subscribe to Rajshri - https://bit.ly/2NFOiwm Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com
https://wn.com/Shehzadi_Hai_Koi_Sameer_Dattani_Pooja_Uuf_Kya_Jadoo_Mohabbat_Hai
Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattani
5:42

Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattani

  • Order:
  • Duration: 5:42
  • Uploaded Date: 11 Feb 2009
  • views: 172461
Watch Pehla Din Hai College Ka- Music Video - Raima Sen, Sameer Dattani. Pehla Din Hai College Ka is a sweet song about the young boy's apprehension for his future. Click here to buy this song on itunes: https://itunes.apple.com/us/album/college-ke-din/id334061012 Operator Codes: Pehla Din Hai College Ka : Reliance Subscribers SMS CT 6433603 To 51234 MTS Subscribers SMS CT 8801077 To 55777 Subscribe to Rajshri - https://bit.ly/2NFOiwm Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com
https://wn.com/Pehla_Din_Hai_College_Ka_Music_Video_College_Ke_Din_Raima_Sen_Sameer_Dattani
Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwal
5:14

Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwal

  • Order:
  • Duration: 5:14
  • Uploaded Date: 05 May 2019
  • views: 62471
Watch and Enjoy the song " Uuf Kya Jaadoo Mohabbat Hai" sung by Sunidhi Chauhan, from the hit movie Uuf Kya Jaadoo Mohabbat Hai starring Sameer Dattani, Pooja Kanwal in lead roles only on Bollywood Classics Movie: Uuf Kya Jaadoo Mohabbat Hai Singers: Sunidhi Chauhan Music: Sandesh Shandilya Cast: Sameer Dattani, Pooja Kanwal, Sachin Khedekar Director: Manoj J. Bhatia Produced By: Rajjat A. Barjatya Subscribe to Bollywood Classics for Superhit Songs : http://bit.ly/SubscribeToBollywoodClassics #UufKyaJaadooMohabbatHai #SameerDattani
https://wn.com/Uuf_Kya_Jaadoo_Mohabbat_Hai_Video_Song_|_Uuf_Kya_Jaadoo_Mohabbat_Hai_|_Sameer_Dattani,_Pooja_Kanwal
Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songs
5:07

Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songs

  • Order:
  • Duration: 5:07
  • Uploaded Date: 13 Feb 2019
  • views: 338197
Celebrate the season of Love with Rajshri's popular Music video "Valentine's Day" featuring Raima Sen & Sameer Dattani from the Music album 'College Ke Din. #HappyValentinesDay2019 #ValentinesDay #ValentineDaySongs Music Video: Valentine's Day Album: College Ke Din Singer: Manohar Shetty, Sonali Vajpayee Music Label: Rajshri Music Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com
https://wn.com/Valentine's_Day_|_Music_Video_|_College_Ke_Din_|_Feat._Raima_Sen_Sameer_Dattani_|_Romantic_Songs
Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songs
3:18

Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songs

  • Order:
  • Duration: 3:18
  • Uploaded Date: 20 Aug 2015
  • views: 497077
Movie: Mallika (2010) Music Director: Pritam Chakraborty, Shamir Tandon, Akbar Sami Singer: Pamela Jain Director: Wilson Louis Woh Bhooli Dastan Lo Phir Yaad Aa Gai is a song from the 2010 movie Mallika starring Sameer Dattani, Himanshu Malik, Rajesh Khera. The lyrics were penned by Sudhakar Sharma. From the latest Bollywood songs to the oldest, SUBSCRIBE now to http://www.YouTube.com/FilmiGaane To see all the latest music playlists that we've created just for you, click here - http://www.youtube.com/user/filmigaane/videos?sort=dd&flow=list&view=1 Connect with us on :- Facebook - http://www.Facebook.com/FilmiGaane Twitter - http://Twitter.com/FilmiGaane Join us on Pinterest - http://pinterest.com/shemaroo Circle & Follow us on google.com/+filmigaane . Download Filmi Gaane App - http://twd.bz/fg Sign up for Free and get daily updates on New Videos, exclusive Web Shows, contests & much more http://youtube.shemaroo.com/default.aspx Send us your feedback and suggestions at : connect@shemaroo.com
https://wn.com/Woh_Bhooli_Dastan_Lo_Phir_Mallika_Songs_Sameer_Dattani_Pamela_Jain_Bollywood_Latest_Songs
Sameer Dattani talks about his role in film Marathon 2007
3:22

Sameer Dattani talks about his role in film Marathon 2007

  • Order:
  • Duration: 3:22
  • Uploaded Date: 01 Aug 2024
  • views: 340
I am a football player who lives in Goa he realized one day the pain in his foot and its cancer and how he beat cancer how he survived his life and at last he ran for a Marathon challenge to himself and his faith. Today we are shooting the last sequence of the race we are covering 42 km by walking and running, This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K collection from South Asia. The collection comprises of 150, 000+ hours of high quality broadcast imagery, mostly shot on 4K, 200 fps slow motion and Full HD. Write to us for licensing this footage on a broadcast format, for use in your production! We are happy to be commissioned to film for you or else provide you with broadcast crewing and production solutions across South Asia. We pride ourselves in bringing the best of India and South Asia to the world... Please subscribe to our channel wildfilmsindia on Youtube www.youtube.com/channel/UCixvwLpO_pk4uVOkkkqP3Mw?sub_confirmation=1 and The Best of India at www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ for a steady stream of videos from across India. Also, visit and enjoy your journey across India at www.clipahoy.com , India's first video-based social networking experience. Reach us at rupindang [at] gmail [dot] com and admin@wildfilmsindia.com To SUBSCRIBE click the below link: www.youtube.com/channel/UCixvwLpO_pk4uVOkkkqP3Mw?sub_confirmation=1 and www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ Join this channel to get access to perks: https://www.youtube.com/channel/UCixvwLpO_pk4uVOkkkqP3Mw/join Like & Follow Us on: Facebook: www.facebook.com/WildernessFilmsIndiaLimited Website: www.wildfilmsindia.com Instagram: www.instagram.com/wildfilmsindia Order our wildfilmsindia t-shirt from Amazon at: www.amazon.in/gp/product/B08DJF9KTS/ref=cx_skuctr_share?smid=A1OGSZV4EFO78D #WildFilmsIndia #WildernessFilmsIndia #BroadcastStockFootage
https://wn.com/Sameer_Dattani_Talks_About_His_Role_In_Film_Marathon_2007
Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no records
2:21

Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no records

  • Order:
  • Duration: 2:21
  • Uploaded Date: 22 Mar 2020
  • views: 1843
Bollywood actor Sameer Dattani on his character in Mani Shankar's Mukhbiir. Sameer Dattani: "It's a very different film. It's based on intelligence department. It's the story of Mukhbiir which means informer spy and it's a story of a man with no name and a lot of names. He works with the government but still he has no record, no file, even if he died nobody will know. It's such kind of a story. It's very soulful also. It connects with people. It is a challenging character for me and my director Mani Shankar helped me a lot. It is very realistic in fact. After years of research and inspired by real-life incidents and real-life stories, Mani Shankar has written this story." This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K collection from South Asia. The collection comprises of 150, 000+ hours of high quality broadcast imagery, mostly shot on 4K, 200 fps slow motion and Full HD. Write to us for licensing this footage on a broadcast format, for use in your production! We are happy to be commissioned to film for you or else provide you with broadcast crewing and production solutions across South Asia. We pride ourselves in bringing the best of India and South Asia to the world... Please subscribe to our channel wildfilmsindia on Youtube www.youtube.com/wildfilmsindia and The Best of India at www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ for a steady stream of videos from across India. Also, visit and enjoy your journey across India at www.clipahoy.com , India's first video-based social networking experience. Reach us at rupindang [at] gmail [dot] com and admin@wildfilmsindia.com To SUBSCRIBE click the below link: www.youtube.com/subscription_center?add_user=WildFilmsIndia and www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ for The Best of India Like & Follow Us on: Facebook: www.facebook.com/WildernessFilmsIndiaLimited Website: www.wildfilmsindia.com #WildFilmsIndia #WildernessFilmsIndia #BroadcastStockFootage
https://wn.com/Sameer_Dattani_On_His_Character_In_Mukhbiir_He_Has_Many_Names,_Works_For_Government,_Has_No_Records
Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song  By Rajshri
4:43

Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song By Rajshri

  • Order:
  • Duration: 4:43
  • Uploaded Date: 11 Feb 2009
  • views: 1531522
Valentine's Day Special Song Feat. Sameer Dattani & Raima Sen Watch this "Valentine's Day" Music Video in HD 1080 : https://www.youtube.com/watch?v=GFFlU-YFI9c Valentines Day is a romantic and a tuneful song. Raima Sen and Samir Dattani look cute in the song adding more spice to the video. Click here to buy this song on itunes: https://itunes.apple.com/us/album/college-ke-din/id334061012 Subscribe and Stay Tuned - http://www.youtube.com/subscription_center?add_user=rajshri Find us on google plus: https://plus.google.com/100462035193279555026/posts Follow us on Pinterest : http://pinterest.com/rajshridotcom/ Like and Share your favorite videos on Facebook: https://www.facebook.com/rajshridotcom Follow us on Twitter: https://twitter.com/Rajshri Subscribe to Rajshri - https://bit.ly/2NFOiwm Subscribe To Our Channel : http://bit.ly/SubscribeToRajshri Follow us on G+ http://plus.google.com/+rajshri Like us on Facebook - https://www.facebook.com/rajshri Follow us on Twitter - https://twitter.com/Rajshri Follow us on Pinterest - http://www.pinterest.com/rajshrivideos Visit Rajshri's Website - http://www.rajshri.com
https://wn.com/Valentine's_Day_Special_Song_|_Feat._Sameer_Dattani_Raima_Sen_|_Original_Song_By_Rajshri
Sameer Dattani on his character in Life Mein Kabhie Kabhiee
1:37

Sameer Dattani on his character in Life Mein Kabhie Kabhiee

  • Order:
  • Duration: 1:37
  • Uploaded Date: 14 Mar 2020
  • views: 2015
Sameer Dattani who plays the role of Jai Prakash Gokhale in the film Life Mein Kabhie Kabhiee on playing the role and the film itself. Sameer Dattani: "Kabhie Kabhiee is a story that makes you happy when you hear it and life is all about being happy as we know. And I got a character that will make you happy. So in life, Kabhie Kabhiee makes a good film. We all have achieved and we all haven't. And if you're asking me indirectly who wins in the film? For that you have to watch the film." This footage is part of the broadcast stock footage archive of Wilderness Films India Ltd., the largest HD and 4K collection from South Asia. The collection comprises of 150, 000+ hours of high quality broadcast imagery, mostly shot on 4K, 200 fps slow motion and Full HD. Write to us for licensing this footage on a broadcast format, for use in your production! We are happy to be commissioned to film for you or else provide you with broadcast crewing and production solutions across South Asia. We pride ourselves in bringing the best of India and South Asia to the world... Please subscribe to our channel wildfilmsindia on Youtube www.youtube.com/wildfilmsindia and The Best of India at www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ for a steady stream of videos from across India. Also, visit and enjoy your journey across India at www.clipahoy.com , India's first video-based social networking experience. Reach us at rupindang [at] gmail [dot] com and admin@wildfilmsindia.com To SUBSCRIBE click the below link: www.youtube.com/subscription_center?add_user=WildFilmsIndia and www.youtube.com/channel/UCfxdSa8WGHe8nVyOm-oqWmQ for The Best of India Like & Follow Us on: Facebook: www.facebook.com/WildernessFilmsIndiaLimited Website: www.wildfilmsindia.com #WildFilmsIndia #WildernessFilmsIndia #BroadcastStockFootage
https://wn.com/Sameer_Dattani_On_His_Character_In_Life_Mein_Kabhie_Kabhiee
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV
    8:37
    Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TVremove from playlist
  • Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hai
    5:14
    Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hairemove from playlist
  • Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattani
    5:42
    Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattaniremove from playlist
  • Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwal
    5:14
    Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwalremove from playlist
  • Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songs
    5:07
    Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songsremove from playlist
  • Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songs
    3:18
    Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songsremove from playlist
  • Sameer Dattani talks about his role in film Marathon 2007
    3:22
    Sameer Dattani talks about his role in film Marathon 2007remove from playlist
  • Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no records
    2:21
    Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no recordsremove from playlist
  • Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song  By Rajshri
    4:43
    Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song By Rajshriremove from playlist
  • Sameer Dattani on his character in Life Mein Kabhie Kabhiee
    1:37
    Sameer Dattani on his character in Life Mein Kabhie Kabhieeremove from playlist
developed with YouTube
PLAYLIST TIME:

Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV

Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV -------------------------------------------------------------- National TV is the most popular media organization in Karnataka, trusted for its highest standards, ethics and quality. We cover News, Politics, Current Affairs, Metro Stories, Film News, Interviews, Lifestyle, Social Responsibility & Awareness. Be the First to get: - Breaking local, regional, national and international news - Extensive Hyper Local News - In-depth coverage of Karnataka’s Politics - Detailed National and Regional News - The Latest Sports Matches, Scores and more - The Widest Cinema Coverage and Biggest Star Stories - Interesting Stories from Across the World __________ #nationaltvnews #nationaltvkannada #ntvnews #nationalkannadanews #ntvkannadanews #kannadanews #nationaltv #nationaltvlive #ntvkannada #nationalnews Corporate Office Address: Banagere Media’s, No. 1022, 3rd Floor, Panchajanya Towers, Dr. Rajkumar Road, 4th Block, Rajajinagar, Bangalore-560010, India. For Business & Advertisement Contact : 9611144559 Email: nationaltvkannada@gmail.com -------------------------------------------------------------- Like us on FaceBook: https://www.facebook.com/nationaltvnews/ Follow us on Instagram: https://www.instagram.com/nationaltvn... Subscribe to Youtube Channel: https://www.youtube.com/c/NATIONALTVN... Follow us on Twitter: https://twitter.com/nationaltvnewz Official website: http://www.nationaltvkannada.com ----------------------------------------- #nationaltvnews #nationaltvkannada #ntvNational #ntvnews #nationalkannadanews #ntvkannadanews #kannadanews #nationaltv #nationaltvlive #ntvkannada #nationalnews #sameerdattani #monalisa #kannadamovies #20yearsold #20yearscelebration #20years #kannada #rockingstaryash #yash #yashboss #sandalwood #darshanthoogudeepa #dboss #viral #viralvideo #trending #trendingvideo #explore #explorepage
8:37
Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | National TV
Sameer Dattani : ಹಿಟ್ ಮೇಲೆ ಹಿಟ್ ಕೊಟ್ಟು ನಾಪತ್ತೆ ಪ್ರೀತಿಯ ಹುಡುಗ ಧ್ಯಾನ್ ಮತ್ತೆ ಪ್ರತ್ಯಕ್ಷ | Nati...
published: 16 Jul 2024
Play in Full Screen
5:14
Shehzadi Hai Koi - Sameer Dattani & Pooja - Uuf Kya Jadoo Mohabbat Hai
Watch this beautiful romantic hindi song Shehzadi Hai Koi from the hindi blockbuster movie...
published: 28 Mar 2008
Play in Full Screen
5:42
Pehla Din Hai College Ka - Music Video - College Ke Din - Raima Sen & Sameer Dattani
Watch Pehla Din Hai College Ka- Music Video - Raima Sen, Sameer Dattani. Pehla Din Hai Col...
published: 11 Feb 2009
Play in Full Screen
5:14
Uuf Kya Jaadoo Mohabbat Hai Video Song | Uuf Kya Jaadoo Mohabbat Hai | Sameer Dattani, Pooja Kanwal
Watch and Enjoy the song " Uuf Kya Jaadoo Mohabbat Hai" sung by Sunidhi Chauhan, from the ...
published: 05 May 2019
Play in Full Screen
5:07
Valentine's Day | Music Video | College Ke Din | Feat. Raima Sen & Sameer Dattani | Romantic Songs
Celebrate the season of Love with Rajshri's popular Music video "Valentine's Day" featurin...
published: 13 Feb 2019
Play in Full Screen
3:18
Woh Bhooli Dastan Lo Phir - Mallika Songs - Sameer Dattani - Pamela Jain - Bollywood Latest Songs
Movie: Mallika (2010) Music Director: Pritam Chakraborty, Shamir Tandon, Akbar Sami Singer...
published: 20 Aug 2015
Play in Full Screen
3:22
Sameer Dattani talks about his role in film Marathon 2007
I am a football player who lives in Goa he realized one day the pain in his foot and its c...
published: 01 Aug 2024
Play in Full Screen
2:21
Sameer Dattani on his character in Mukhbiir: he has many names, works for government, has no records
Bollywood actor Sameer Dattani on his character in Mani Shankar's Mukhbiir. Sameer Dattan...
published: 22 Mar 2020
Play in Full Screen
4:43
Valentine's Day Special Song | Feat. Sameer Dattani & Raima Sen | Original Song By Rajshri
Valentine's Day Special Song Feat. Sameer Dattani & Raima Sen Watch this "Valentine's Da...
published: 11 Feb 2009
Play in Full Screen
1:37
Sameer Dattani on his character in Life Mein Kabhie Kabhiee
Sameer Dattani who plays the role of Jai Prakash Gokhale in the film Life Mein Kabhie Kabh...
published: 14 Mar 2020
Play in Full Screen

Sameer Dattani

Sammir Dattani, also known as Dhyan (in the Kannada film industry), is an Indian film actor who acts in Bollywood, the Hindi film industry, and Sandalwood, the Kannada film industry.

Career

Born into a Gujarati family in Bombay, Dattani has worked in Hindi, Kannada, and Tamil cinema, He is fluent in several languages.

Dattani started his Hindi film career with Rajshri Productions. His first Hindi film Uuf Kya Jaadoo Mohabbat Hai was followed by roles in Madhur Bhandarkar's Corporate and Vikram Bhatt's Life Mein Kabhie Kabhie as well as films such as Pyar Mein Twist. In the Hindi film Mukhbir, directed by Mani Shankar, Dattani played the lead role of an undercover police informer.

Dattani appeared in the Kannada-language film Nanna Preethiya Hudugi which earned him the best debutant award in the South. Besides Monalisa, other Kannada film appearances include Amruthadhare.

Dattani's first Tamil film, produced by Gemini Films, was Kutty with Shriya Saran.

Shyam Benegal cast him in Well Done Abba (2010), alongside Boman Irani and Minissha Lamba. After premiering at international film festivals in Montreal, Dubai and London, it had its commercial release 26 March 2010.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×