'+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; })); }); -->

Border (1997 film)

Border is a 1997 Bollywood war drama film based on the Indo-Pakistani War of 1971. J. P. Dutta directed and produced this war epic which stars Sunny Deol, Sunil Shetty, Akshaye Khanna, Jackie Shroff, Tabu, Pooja Bhatt, Puneet Issar, Kulbhushan Kharbanda, Raakhee and Sharbani Mukherjee. It is the highest grossing Indian film of 1997 and when adjusted for inflation holds as the ninth highest grossing Hindi film of the 90s decade.

The movie is an adaptation from real life events that happened at the Battle of Longewala fought in Rajasthan (Western Theatre) during the Indo-Pakistani War of 1971 and Bangladesh Liberation War. It is about how a band of 120 soldiers of the Punjab regiment of the Indian Army headed by Major Kuldip Singh Chandpuri successfully defended their post all night against a whole tank regiment of the Pakistani Army (The casualties on the Indian side was highly exaggerated in the film), until assistance came from the Indian Air Force the next morning. The film was a critical and commercial hit in India.

Podcasts:

  • बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty

    Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. P. Dutta. Set during the Indo-Pakistani War of 1971, it is an adaptation of real life events that happened during the Battle of Longewala in 1971.The film stars an ensemble cast of Sunny Deol, Jackie Shroff, Sunil Shetty, Akshaye Khanna, Sudesh Berry, Puneet Issar and Kulbhushan Kharbanda. Tabu, Raakhee, Pooja Bhatt and Sharbani Mukherjee feature in supporting roles. Starring : Sunny Deol, Jackie Shroff, Suniel Shetty, Akshaye Khanna, Rakhee Gulzar, Pooja Bhatt, Tabu, Puneet Issar, Sudesh Berry, Kulbhushan Kharbanda, Sharbani Mukherjee, Amrit Pal, Hemant Choudhary, Sanjeev Dabholkar, Sapna Bedi. Producer / Director : J. P. Dutta ► Subscribe - http://bit.ly/MovieParlour ► Watch Superhit Bollywood ...

    published: 19 Dec 2022
  • Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Video

    Watch the shooting of a scene from the 1997 Hindi action film 'Border' Starring Suniel Shetty, Akshaye Khanna, Sunny Deol, Jackie Shroff, Puneet Issar, In Lead Roles. Bollywood Villain Ranjeet’s Tell-All Interview With Bharathi S Pradhan | Timeless Superstars https://www.youtube.com/watch?v=Cjq3X11TBUA About Lehren: Lehren (https://en.wikipedia.org/wiki/Lehren) is a complete Entertainment News Network mainly devoted to Indian Films, Television, Celebrity Coverage, and Pop Culture. It covers a wide array of film news, reviews, interviews, celebrity life, gossip, scoops, red carpet, and trends. Lehren is the first and most widely viewed and recalled Indian Entertainment destination. Lehren's engagement with Showbiz dates from 1987, when it introduced several film-based entertainment show...

    published: 13 Feb 2022
  • To Chalun - Border (1997) 1080p By Real HD

    Song : To Chalun Movie: Border Artist : Sunny Deol, Sunil Shetty, Sharbani Mukherjee Singer : Roop Kumar Rathod Music Director : Anu Malik Writer : Javed Akhtar

    published: 29 Sep 2020
  • To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0

    To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 7,750,796 views Venus 14,723,916 subscribers Published on Aug 23, 2018 To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits Song : To Chalun Singers : Roop Kumar Rathod Music : Anu Malik Lyrics : Javed Akhtar Director : J P Dutta Movie : Border Producer : J P Dutta Banner : J P Films

    published: 16 Jun 2019
  • Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Dutta

    It is a sincere effort to recreate old age super hit movies into current movie scenario. I just tried to make the trailer while keeping the essence of the movie real and imagining it for the audience of current times. Music Source:- Amazing Cinematic Trailer Music (https://www.youtube.com/watch?v=HQhR__3i98U&list=PLWtzv1vp36DPR4JFHyoyY9VcXD4lYctFT)

    published: 23 Jun 2017
  • Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retro

    About Lehren: Lehren (https://en.wikipedia.org/wiki/Lehren) is a complete Entertainment News Network mainly devoted to Indian Films, Television, Celebrity Coverage, and Pop Culture. It covers a wide array of film news, reviews, interviews, celebrity life, gossip, scoops, red carpet, and trends. Lehren is the first and most widely viewed and recalled Indian Entertainment destination. Lehren's engagement with Showbiz dates from 1987, when it introduced several film-based entertainment shows for India's then-emerging television industry. Lehren, today, has unparalleled reach across digital platforms and is a favorite destination for young, hip, and trendsetting entertainment enthusiasts. लहरें (https://en.wikipedia.org/wiki/Lehren) एक संपूर्ण मनोरंजन न्यूज़ नेटवर्क है जो मुख्य रूप से भारतीय ...

    published: 15 Aug 2022
  • Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||

    ( 𝑊𝑒𝑙𝑐𝑜𝑚𝑒 )      ( 𝑇𝑜 ) ( 𝑀𝑦 𝐶ℎ𝑎𝑛𝑛𝑒𝑙 )        🎶 🇲 🇴 🇻 🇮 🇪  🇸 🇴 🇳 🇬 🇸 🎶     {Subscribe My Channel} 🎮 DELL GAMERZ 🎮 01.https://youtube.com/channel/UCGKtnRBW9VEunMneoUDxq9w ------------------------------------------------------- {Subscribe My New Channel} 🎵M͙O͙V͙I͙E͙ S͙O͙N͙G͙S͙🎵 01. Channel link... https://youtube.com/channel/UCJpuBkWM...​ ------------------------------------------------------------- {Subscribe My New Channel} 🎵C͢L͢A͢S͢S͢I͢C͢ J͢O͢K͢E͢B͢O͢X🎵 02. Channel link... http://www.youtube.com/channel/UCrSXd...​ ------------------------------------------------------------------------------------- Bo...

    published: 26 Jan 2022
  • बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song

    बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song Song: Mere Dushman Mere Bhai Singer(s): Hariharan Music: Anu Malik Film: Border (1997) #gaanenayepurane #border #sunnydeol

    published: 25 Dec 2021
  • BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)

    BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023) Support Please Our Channel...🙏🙏🙏 https://youtu.be/_hr_HDwJycU Like And Share Video...👍👍👍 Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. P. Dutta. Set during the Indo-Pakistani War of 1971, it is an adaptation of real life events that happened during the Battle of Longewala in 1971.[2] The film stars an ensemble cast of Sunny Deol, Jackie Shroff, Sunil Shetty, Akshaye Khanna, Sudesh Berry, Puneet Issar and Kulbhushan Kharbanda. Tabu, Raakhee, Pooja Bhatt and Sharbani Mukherjee feature in supporting roles. Cast - Sunny Deol as Major Kuldip Singh Chandpuri, MVC Jackie Shroff as Wing Commander Andy Bajwa Suniel Shetty as Assistant Commandant Captain Bhairon Singh, BSF Akshaye Kh...

    published: 31 Jan 2023
  • Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Suniel

    Movie:Border (1997) Singer:Roop Kumar Rathod, Sonu Nigam Lyricist:Javed Akhtar Composer:Anu Malik Music Director"Anu Malik Genre:Happy (Feel Good) Director:J.P. Dutta Music Label: © Venus Music Starring: Sunny Deol, Suniel Shetty, Akshaye Khanna, Raakhee, Jackie Shroff, Tabbu, Pooja Bhatt, Kulbhushan Kharbanda, Puneet Issar Release on: 13th June, 1997 Sandese Aate Hain Humein Tadpaate Hain To Chitthi Aati Hai To Poochh Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Sandese Aate Hain Humein Tadpaate Hain To Chitthi Aati Hain To Poochh Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Kisi Dilwaali Ne Kisi Matwaali Ne Humein Khat Likkha Hai Ki Humse Poochha Hai Kisi Ki Saason Ne Kisi Ki Dhadk...

    published: 11 Jun 2023
बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty
2:50:50

बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty

  • Order:
  • Duration: 2:50:50
  • Uploaded Date: 19 Dec 2022
  • views: 33525156
Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. P. Dutta. Set during the Indo-Pakistani War of 1971, it is an adaptation of real life events that happened during the Battle of Longewala in 1971.The film stars an ensemble cast of Sunny Deol, Jackie Shroff, Sunil Shetty, Akshaye Khanna, Sudesh Berry, Puneet Issar and Kulbhushan Kharbanda. Tabu, Raakhee, Pooja Bhatt and Sharbani Mukherjee feature in supporting roles. Starring : Sunny Deol, Jackie Shroff, Suniel Shetty, Akshaye Khanna, Rakhee Gulzar, Pooja Bhatt, Tabu, Puneet Issar, Sudesh Berry, Kulbhushan Kharbanda, Sharbani Mukherjee, Amrit Pal, Hemant Choudhary, Sanjeev Dabholkar, Sapna Bedi. Producer / Director : J. P. Dutta ► Subscribe - http://bit.ly/MovieParlour ► Watch Superhit Bollywood Movies - https://bit.ly/-BollywoodMovies ► Watch Superhit Hindi Movies - https://bit.ly/-HindiMovies ► Watch Hindi Romantic Movies - https://bit.ly/HindiRomanticMovies ► Watch Hindi Action Movies - https://bit.ly/HindiActionMovies ► Watch Hindi Comedy Movies - https://bit.ly/HindiComedyMovies ► Watch New Released Hindi Dubbed Movies - https://bit.ly/NewReleasedHindiDubbedMovie ► Watch Old Hindi Classic Movies - https://bit.ly/OldHindiClassicMovies ► Like us on Facebook : https://www.facebook.com/ultramovieparlour ► Follow us on Instagram: https://www.instagram.com/p/CDONzmHBEYF/?igshid=9s82xoxvsynv ► Follow us on Twitter : https://mobile.twiteter.com/ultramovie?lang=en ► Website: http://www.ultraindia.com 00:00 Chapters 5:11 Army Gets Ready For Fight 29:52 Sunny Deol Tries To Cross Border 01:05:32 To Chaloon Song 01:16:44 Ye Dharti Meri Maa Hai Dialouge 01:34:10 Sandese Aate Hai Song 01:45:56 Final Fight Scene #sunnydeol #jackieshroff #sunielshetty #border #hindiactionmovies #bollywoodactionmovies #HindiRomanticFilm #Cinema #hindifullmovie #bollywoodfullmovie #hindimovie #bollywoodmovies #Subscribe #Youtube #HindiHitMovies #PopularHindiMovies #besthindimovies #FullHindiMovie #IndianCinema #indianmoviescenesunnydeol border full movie border movie, border film, border hindi full movie, border sunny deol full movie, border sunny deol dialogue, border sunil shetty movie , border 1971 full hindi movie, hindi patriotic movies, , ye dharti meri maa hai sunil shetty, sunny deol border dialogue, sunny deol border movie, border movie dialogues, hindi action movies, bollywood action movies, border movie dialogue, border movie dialogue sunil shetty, border movie ye dharti meri mata hai, sunny deol best action movies, sunil shetty best action movies, hindi action full movie hd, bollywood action movie full hd
https://wn.com/बॉर्डर_Border_(1997)_Full_Movie_|_Blockbuster_Hindi_Patriotic_Movie_|_Sunny_Deol_|_Suniel_Shetty
Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Video
12:36

Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Video

  • Order:
  • Duration: 12:36
  • Uploaded Date: 13 Feb 2022
  • views: 1197139
Watch the shooting of a scene from the 1997 Hindi action film 'Border' Starring Suniel Shetty, Akshaye Khanna, Sunny Deol, Jackie Shroff, Puneet Issar, In Lead Roles. Bollywood Villain Ranjeet’s Tell-All Interview With Bharathi S Pradhan | Timeless Superstars https://www.youtube.com/watch?v=Cjq3X11TBUA About Lehren: Lehren (https://en.wikipedia.org/wiki/Lehren) is a complete Entertainment News Network mainly devoted to Indian Films, Television, Celebrity Coverage, and Pop Culture. It covers a wide array of film news, reviews, interviews, celebrity life, gossip, scoops, red carpet, and trends. Lehren is the first and most widely viewed and recalled Indian Entertainment destination. Lehren's engagement with Showbiz dates from 1987, when it introduced several film-based entertainment shows for India's then-emerging television industry. Lehren, today, has unparalleled reach across digital platforms and is a favorite destination for young, hip, and trendsetting entertainment enthusiasts. लहरें (https://en.wikipedia.org/wiki/Lehren) एक संपूर्ण मनोरंजन न्यूज़ नेटवर्क है जो मुख्य रूप से भारतीय फिल्म, टेलीविजन जगत के साथ सेलिब्रिटी कवरेज और पॉप संस्कृति को समर्पित है। इसमें फ़िल्मी खबर ,रिव्यु, इंटरव्यू, कलाकार के जीवन, गॉसिप्स, स्कूप्स, रेड कार्पेट और ट्रेंड्स को बखूभी और सही तरह से दिखाया जाता है। लहरें पहला और सबसे ज्यादा देखे जाने वाला और याद किया जाने वाला भारतीय मनोरंजन नेटवर्क है। लहरें से मनोरंजन का साथ 1987 से है जब भारत के तत्कालीन उभरते टेलीविजन उद्योग के लिए कई फिल्म-आधारित मनोरंजन शो पेश किए। लहरें, आज डिजिटल प्लेटफॉर्म पर पूरी तरह से और हर जगह फैला हुआ है। लहरें आज युवा, अभिलाषी और ट्रेंडसेटिंग मनोरंजन उत्साही लोगों के लिए एक पसंदीदा प्लेटफार्म है। Subscribe To Lehren (लहरें) Entertainment Channels – Lehren Retro: https://www.youtube.com/user/LehrenRetro?sub_confirmation=1 LehrenTV: https://www.youtube.com/c/lehrentv?sub_confirmation=1 Lehren Small Screen: https://www.youtube.com/user/LehrenSmallScreen?sub_confirmation=1 Hollywood Select: https://www.youtube.com/c/LehrenHollywood?sub_confirmation=1 Lehren Bhojpuri: https://www.youtube.com/user/LehrenBhojpuri?sub_confirmation=1 Lehren Marathi: https://www.youtube.com/user/LehrenMarathi?sub_confirmation=1 Follow Lehren (लहरें) On Social Media - Facebook: https://www.facebook.com/LehrenTV Twitter: https://twitter.com/lehrennetworks Instagram: https://www.instagram.com/lehrentv/ Flipboard: https://flipboard.com/@lehrentv Follow Lehren (लहरें) On Google News For Latest Entertainment Updates - Lehren English: https://news.google.com/publications/CAAqBwgKMK3KlQswnq-rAw Lehren Retro: https://news.google.com/publications/CAAqBwgKMKeWpgswj6G-Aw Lehren Hindi: https://news.google.com/publications/CAAqBwgKML6WpgswpqG-Aw Download Lehren (लहरें) Android App: https://lehren.com/get-app/ Watch More Videos – https://lehren.com/entertainment-videos/ #SunielShetty #AkshayeKhanna #SunnyDeol #JackieShroff #PuneetIssar
https://wn.com/Border_(1997)_On_Location_|_Suniel_Shetty_|_Sunny_Deol_|_Akshaye_Khanna_|_Flashback_Video
To Chalun  - Border (1997) 1080p By Real HD
6:39

To Chalun - Border (1997) 1080p By Real HD

  • Order:
  • Duration: 6:39
  • Uploaded Date: 29 Sep 2020
  • views: 384279
Song : To Chalun Movie: Border Artist : Sunny Deol, Sunil Shetty, Sharbani Mukherjee Singer : Roop Kumar Rathod Music Director : Anu Malik Writer : Javed Akhtar
https://wn.com/To_Chalun_Border_(1997)_1080P_By_Real_Hd
To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0
7:23

To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0

  • Order:
  • Duration: 7:23
  • Uploaded Date: 16 Jun 2019
  • views: 7604555
To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 7,750,796 views Venus 14,723,916 subscribers Published on Aug 23, 2018 To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits Song : To Chalun Singers : Roop Kumar Rathod Music : Anu Malik Lyrics : Javed Akhtar Director : J P Dutta Movie : Border Producer : J P Dutta Banner : J P Films
https://wn.com/To_Chalun_Full_Hd_Video_Song_|_Border_|_Sunny_Deol,_Sunil_Shetty,_Akshaye_Khanna_|_90's_Hindi_Hits_0
Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Dutta
1:49

Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Dutta

  • Order:
  • Duration: 1:49
  • Uploaded Date: 23 Jun 2017
  • views: 263333
It is a sincere effort to recreate old age super hit movies into current movie scenario. I just tried to make the trailer while keeping the essence of the movie real and imagining it for the audience of current times. Music Source:- Amazing Cinematic Trailer Music (https://www.youtube.com/watch?v=HQhR__3i98U&list=PLWtzv1vp36DPR4JFHyoyY9VcXD4lYctFT)
https://wn.com/Border_Movie_|_Trailer_|_Bollywood_|_13_June,_1997_|_Sunny_Deol_|_J_P_Dutta
Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retro
0:46

Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retro

  • Order:
  • Duration: 0:46
  • Uploaded Date: 15 Aug 2022
  • views: 394515
About Lehren: Lehren (https://en.wikipedia.org/wiki/Lehren) is a complete Entertainment News Network mainly devoted to Indian Films, Television, Celebrity Coverage, and Pop Culture. It covers a wide array of film news, reviews, interviews, celebrity life, gossip, scoops, red carpet, and trends. Lehren is the first and most widely viewed and recalled Indian Entertainment destination. Lehren's engagement with Showbiz dates from 1987, when it introduced several film-based entertainment shows for India's then-emerging television industry. Lehren, today, has unparalleled reach across digital platforms and is a favorite destination for young, hip, and trendsetting entertainment enthusiasts. लहरें (https://en.wikipedia.org/wiki/Lehren) एक संपूर्ण मनोरंजन न्यूज़ नेटवर्क है जो मुख्य रूप से भारतीय फिल्म, टेलीविजन जगत के साथ सेलिब्रिटी कवरेज और पॉप संस्कृति को समर्पित है। इसमें फ़िल्मी खबर ,रिव्यु, इंटरव्यू, कलाकार के जीवन, गॉसिप्स, स्कूप्स, रेड कार्पेट और ट्रेंड्स को बखूभी और सही तरह से दिखाया जाता है। लहरें पहला और सबसे ज्यादा देखे जाने वाला और याद किया जाने वाला भारतीय मनोरंजन नेटवर्क है। लहरें से मनोरंजन का साथ 1987 से है जब भारत के तत्कालीन उभरते टेलीविजन उद्योग के लिए कई फिल्म-आधारित मनोरंजन शो पेश किए। लहरें, आज डिजिटल प्लेटफॉर्म पर पूरी तरह से और हर जगह फैला हुआ है। लहरें आज युवा, अभिलाषी और ट्रेंडसेटिंग मनोरंजन उत्साही लोगों के लिए एक पसंदीदा प्लेटफार्म है। Subscribe To Lehren (लहरें) Entertainment Channels – Lehren Retro: https://www.youtube.com/user/LehrenRetro?sub_confirmation=1 LehrenTV: https://www.youtube.com/c/lehrentv?sub_confirmation=1 Lehren Small Screen: https://www.youtube.com/user/LehrenSmallScreen?sub_confirmation=1 Hollywood Select: https://www.youtube.com/c/LehrenHollywood?sub_confirmation=1 Lehren Bhojpuri: https://www.youtube.com/user/LehrenBhojpuri?sub_confirmation=1 Lehren Marathi: https://www.youtube.com/user/LehrenMarathi?sub_confirmation=1 Follow Lehren (लहरें) On Social Media - Facebook: https://www.facebook.com/LehrenTV Twitter: https://twitter.com/lehrennetworks Instagram: https://www.instagram.com/lehrentv/ Flipboard: https://flipboard.com/@lehrentv Follow Lehren (लहरें) On Google News For Latest Entertainment Updates - Lehren English: https://news.google.com/publications/CAAqBwgKMK3KlQswnq-rAw Lehren Retro: https://news.google.com/publications/CAAqBwgKMKeWpgswj6G-Aw Lehren Hindi: https://news.google.com/publications/CAAqBwgKML6WpgswpqG-Aw Download Lehren (लहरें) Android App: https://lehren.com/get-app/ Watch More Videos – https://lehren.com/entertainment-videos/
https://wn.com/Sudesh_Berry’S_Real_Stunt_During_The_Shooting_Of_Film_Border_(1997)_Shorts_Flashback_Retro
Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||
54:00

Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||

  • Order:
  • Duration: 54:00
  • Uploaded Date: 26 Jan 2022
  • views: 180102
( 𝑊𝑒𝑙𝑐𝑜𝑚𝑒 )      ( 𝑇𝑜 ) ( 𝑀𝑦 𝐶ℎ𝑎𝑛𝑛𝑒𝑙 )        🎶 🇲 🇴 🇻 🇮 🇪  🇸 🇴 🇳 🇬 🇸 🎶     {Subscribe My Channel} 🎮 DELL GAMERZ 🎮 01.https://youtube.com/channel/UCGKtnRBW9VEunMneoUDxq9w ------------------------------------------------------- {Subscribe My New Channel} 🎵M͙O͙V͙I͙E͙ S͙O͙N͙G͙S͙🎵 01. Channel link... https://youtube.com/channel/UCJpuBkWM...​ ------------------------------------------------------------- {Subscribe My New Channel} 🎵C͢L͢A͢S͢S͢I͢C͢ J͢O͢K͢E͢B͢O͢X🎵 02. Channel link... http://www.youtube.com/channel/UCrSXd...​ ------------------------------------------------------------------------------------- Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS|| ------------------------------------------------------------------------------------------- 🎵Tracklist🎵 Click your favourite songs 👇                                                 👇  01. Sandese Aate Hai ► 00:00​​ 02. Hamen Jab Se ► 10:20​​ 03. To Chalun ► 14:49​​ 04. Mere Dushman ► 21:57​​ 05. Hindustan Hindustan ► 31:26​​ ​​​​------------------------------------------------------- {Thank you watching this video}             🇮🇳 {JAI HIND} 🇮🇳 -------------------------------------------------------- Copyright  Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use" permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use" IMPORTANT NOTICE: These All Things Are Copyrighted. We Just Edited And Published To Audience For Entertainment Purpose Only. All Right to above Movie Label & No Copyrights Infringement intended. We are not earning any money with this content. their respective content Owner will get all earning of this content. *All rights reserved to the respective Owners* *About this channel: *In this channel, we share all types of Indian songs step by step in every part of songs and we pick all hit songs in HD sound quality & rare songs. ------------------------------------------------------------------------ 》》tags 》》》 #Trending​​​ #Trending​songs​​​ #Classicjukebox​ #Moviesongs​ #hindimovie​​​ #hindifilm​​​​ #hindimoviekagana​​​​ #hindimoviekegane​​​​ #puranefilmkegane​​​​ #puranegane​​​​ #jukebox​​​​ #allhindisongs​​​​ #hindioldsong​​​​ #hindioldsongs​​​​ #hindimp3song​​​​ #jukeboxhindisongs​​​​ #Longtimesongs​​​​ #romanticSong​​​​ #albumsong​​​​ #oldsongs​ #sadsong​​​​ #lovesong​​​​ #everygreensong​​​​ #hindialbumsong​​​2019​ #hindipuranagana​​​​ #hindimoviekagana​​​ #sadhindisong​​​​ #puranefilmkegane​​​​ #puranegane​​​​ #jukebox​​​​ #allhindisongs​​​​ #hindiallsong​​​​ #hindioldsong​​​​ #hindioldsongs​​​​ #hindisongs2021​ #hindimp3song​​​​ #jukeboxhindisongs​​​​ #Longtimesongs​​ #Trendingsongs​​​ #alkayagniksongs​​​​ #alkayagniksong​ #trending​​​​ #trendingsong​​​​ #jukebox​​​​ #HindiSadSongs​​​​​ #हिंदीदर्दभरेगीत​​​​​ #सदाबहारपुरानेगाने​​​​​ #Besthindisongs​​​​ #bollywoodsongs​​​​​ #Allbollywoodsongs​​​​​ #EvergreenHits​​​​​ #handisong​​​​ #handisongnew2020​ #hindisongs​​​​ #jukeboxsongs​​​​ #jukeboxhindisongs​​​​ #jukeboxhits​​​ #tseries​​​​ #geetmp3​​​​ -------------------------------------------
https://wn.com/Border_Movie_All_Songs||Sunny_Deol_Sunil_Shetty_Akshaye_Khanna||Movie_Songs||
बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song
6:19

बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song

  • Order:
  • Duration: 6:19
  • Uploaded Date: 25 Dec 2021
  • views: 6237458
बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song Song: Mere Dushman Mere Bhai Singer(s): Hariharan Music: Anu Malik Film: Border (1997) #gaanenayepurane #border #sunnydeol
https://wn.com/बॉर्डर_मेरे_दुश्मन_मेरे_भाई_4K_सनी_देओल_हरिहरन_Border_Movie_4K_Song
BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)
1:41

BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)

  • Order:
  • Duration: 1:41
  • Uploaded Date: 31 Jan 2023
  • views: 1344
BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023) Support Please Our Channel...🙏🙏🙏 https://youtu.be/_hr_HDwJycU Like And Share Video...👍👍👍 Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. P. Dutta. Set during the Indo-Pakistani War of 1971, it is an adaptation of real life events that happened during the Battle of Longewala in 1971.[2] The film stars an ensemble cast of Sunny Deol, Jackie Shroff, Sunil Shetty, Akshaye Khanna, Sudesh Berry, Puneet Issar and Kulbhushan Kharbanda. Tabu, Raakhee, Pooja Bhatt and Sharbani Mukherjee feature in supporting roles. Cast - Sunny Deol as Major Kuldip Singh Chandpuri, MVC Jackie Shroff as Wing Commander Andy Bajwa Suniel Shetty as Assistant Commandant Captain Bhairon Singh, BSF Akshaye Khanna as 2nd Lieutenant Dharamvir Singh Bhan Rakhee Gulzar as Sujatha Devi, Dharamvir's mother Pooja Bhatt as Kamla Sodhi, Dharamvir's fiancée Tabu as Yamora Kaur Chandpuri, Kuldeep's wife Puneet Issar as Subedar Ratan Singh Sudesh Berry as Naib Subedar Mathura Das Kulbhushan Kharbanda as Cook Havildar Bhagiram Sharbani Mukherjee as Phool Kanwar, Bhairon's wife Amrit Pal as Kamalnath Sodhi Hemant Choudhary as P.D. Somesh Uttam Sanjeev Dabholkar as a Pakistani soldier Sapna Bedi as Roopali Sunny Deol Movie Border Movie Cast Then And Now Border Movie Cast Then Vs Now How They Change Sunny Deol Movie New Suniel Shetty Old Movie Old Bollywood Movie Hindi Bollywood Movie Old Hindi Movie Border Movie Before And After Before And After Then Vs Now Then And Now Bollywood old Movie Old Bollywood Hindi Movie Ss vlogs club Sunny Deol Old Movie Jackie Shroff Old Movie Jackie Shroff Bollywood Movie Bollywood Star Cast Then And Now Bollywood Old Movie Bollywood News #border #oldmovies #beforeandafter #bollywoodactor #thenandnow #ssvlogsclub #bollywoodlife #sunnydeol #sunnydeolnewmovie #sunielshetty #jackieshroff #bollywood @puragyansikho @dadimaawalikahaniya @sachinsainijhunjhunuwala Thank You For Watching...🙏🙏🙏
https://wn.com/Border_1997_Movie_Star_Cast_Then_And_Now_How_They_Change_(1997Vs2023)
Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Suniel
11:50

Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Suniel

  • Order:
  • Duration: 11:50
  • Uploaded Date: 11 Jun 2023
  • views: 100855
Movie:Border (1997) Singer:Roop Kumar Rathod, Sonu Nigam Lyricist:Javed Akhtar Composer:Anu Malik Music Director"Anu Malik Genre:Happy (Feel Good) Director:J.P. Dutta Music Label: © Venus Music Starring: Sunny Deol, Suniel Shetty, Akshaye Khanna, Raakhee, Jackie Shroff, Tabbu, Pooja Bhatt, Kulbhushan Kharbanda, Puneet Issar Release on: 13th June, 1997 Sandese Aate Hain Humein Tadpaate Hain To Chitthi Aati Hai To Poochh Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Sandese Aate Hain Humein Tadpaate Hain To Chitthi Aati Hain To Poochh Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Kisi Dilwaali Ne Kisi Matwaali Ne Humein Khat Likkha Hai Ki Humse Poochha Hai Kisi Ki Saason Ne Kisi Ki Dhadkan Ne Kisi Ki Choodi Ne Kisi Ke Kangan Ne Kisi Ke Kajre Ne Kisi Ke Gajre Ne Mahekti Subahon Ne Machalti Shaamon Ne Akeli Raaton Ne Adhoori Baaton Ne Tarasti Baahon Ne Aur Pooccha Hai Tarsi Nighahon Ne Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Dil Soona Soona Hai Sandese Aate Hain Humein Tadpate Hain To Chitthi Aati Hai To Pooche Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Mohabbat Walon Ne Hamare Yaaron Ne Humein Ye Likkha Hai Ke Humse Poochha Hai Hamare Gaaon Ne Aam Ki Chaaon Ne Puraane Peepal Ne Baraste Baadal Ne Khet Khaliayaanon Ne Hare Maidaanon Ne Basanti Belon Ne Jhoomti Belon Ne Lachakte Jhulon Ne Behekte Phoolon Ne Chatakti Kaliyon Ne Aur Poochha Hain Gaaon Ki Galiyon Ne Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Gaaon Soona Soona Hai Sandese Aate Hain Humein Tadpate Hain To Chitthi Aati Hai To Pooche Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Ohh Ohhhh Ohhh … Lyricsbogie.Com Kabhi Ek Mamta Ki Pyaar Ki Ganga Ki Vo Chitthi Aati Hai Saath Vo Laati Hai Mere Din Bachpan Ke Khel Vo Aangan Ke Vo Saaya Aanchal Ka Vo Teeka Kaajal Ka Vo Lori Raaton Mein Vo Narmi Haathon Mein Vo Chaahat Aankhon Mein Vo Chinta Baaton Mein Bigadna Oopar Se Mohabbat Andar Se Kare Vo Devi Maa Yahin Har Khat Mein Poochhe Meri Maa Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Aangan Soona Soona Hai Sandese Aate Hain Humein Tadpate Hain To Chitthi Aati Hai To Pooche Jaati Hai Ke Ghar Kab Aaoge Ke Ghar Kab Aaoge Likho Kab Aaoge Ki Tum Bin Ye Ghar Soona Soona Hai Ohohho.. Ay Guzarne Waali Hava Bata Mera Itna Kaam Karegi Kya Mere Gaanv Ja Mere Doston Mo Salaam De Meri Gaanv Mein Hai Jo Vo Gali Jahaan Rehti Hai Meri Dilruba Usay Mere Pyaar Ka Jaam De Usay Mere Pyaar Ka Jaam De Vahin Thodi Door Hai Ghar Mera Mera Ghar Mein Hai Meri Boodhi Maa Mere Maa Ke Pairon Ko Chhooke Usay Uske Beta Ka Naam De Ay Guzarne Waali Hava Zara Mere Doston Meri Dilruba Meri Maa Ko Mera Paiyam De Unhe Jaake Ty Ye Paigam De Main Vaapas Aaoonga Main Vaapas Aaoonga Phir Apne Gaaon Mein Usiki Chaaon Mein Ki Maa Ke Aanchal Se Gaanv Ke Peepal Se Kisike Kaajal Se Kiya Jo Vaada Tha Vo Nibhaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga Main Ek Din Aaoonga.
https://wn.com/Sandese_Aate_Hai_|_❤️90S_Jhankar❤️_|_Border_(1997)_Roop_Kumar_Rathod,_Sonu_Nigam_|_Sunny,_Suniel
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty
    2:50:50
    बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shettyremove from playlist
  • Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Video
    12:36
    Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Videoremove from playlist
  • To Chalun  - Border (1997) 1080p By Real HD
    6:39
    To Chalun - Border (1997) 1080p By Real HDremove from playlist
  • To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0
    7:23
    To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0remove from playlist
  • Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Dutta
    1:49
    Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Duttaremove from playlist
  • Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retro
    0:46
    Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retroremove from playlist
  • Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||
    54:00
    Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||remove from playlist
  • बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song
    6:19
    बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Songremove from playlist
  • BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)
    1:41
    BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)remove from playlist
  • Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Suniel
    11:50
    Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Sunielremove from playlist
PLAYLIST TIME:

बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty

Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. P. Dutta. Set during the Indo-Pakistani War of 1971, it is an adaptation of real life events that happened during the Battle of Longewala in 1971.The film stars an ensemble cast of Sunny Deol, Jackie Shroff, Sunil Shetty, Akshaye Khanna, Sudesh Berry, Puneet Issar and Kulbhushan Kharbanda. Tabu, Raakhee, Pooja Bhatt and Sharbani Mukherjee feature in supporting roles. Starring : Sunny Deol, Jackie Shroff, Suniel Shetty, Akshaye Khanna, Rakhee Gulzar, Pooja Bhatt, Tabu, Puneet Issar, Sudesh Berry, Kulbhushan Kharbanda, Sharbani Mukherjee, Amrit Pal, Hemant Choudhary, Sanjeev Dabholkar, Sapna Bedi. Producer / Director : J. P. Dutta ► Subscribe - http://bit.ly/MovieParlour ► Watch Superhit Bollywood Movies - https://bit.ly/-BollywoodMovies ► Watch Superhit Hindi Movies - https://bit.ly/-HindiMovies ► Watch Hindi Romantic Movies - https://bit.ly/HindiRomanticMovies ► Watch Hindi Action Movies - https://bit.ly/HindiActionMovies ► Watch Hindi Comedy Movies - https://bit.ly/HindiComedyMovies ► Watch New Released Hindi Dubbed Movies - https://bit.ly/NewReleasedHindiDubbedMovie ► Watch Old Hindi Classic Movies - https://bit.ly/OldHindiClassicMovies ► Like us on Facebook : https://www.facebook.com/ultramovieparlour ► Follow us on Instagram: https://www.instagram.com/p/CDONzmHBEYF/?igshid=9s82xoxvsynv ► Follow us on Twitter : https://mobile.twiteter.com/ultramovie?lang=en ► Website: http://www.ultraindia.com 00:00 Chapters 5:11 Army Gets Ready For Fight 29:52 Sunny Deol Tries To Cross Border 01:05:32 To Chaloon Song 01:16:44 Ye Dharti Meri Maa Hai Dialouge 01:34:10 Sandese Aate Hai Song 01:45:56 Final Fight Scene #sunnydeol #jackieshroff #sunielshetty #border #hindiactionmovies #bollywoodactionmovies #HindiRomanticFilm #Cinema #hindifullmovie #bollywoodfullmovie #hindimovie #bollywoodmovies #Subscribe #Youtube #HindiHitMovies #PopularHindiMovies #besthindimovies #FullHindiMovie #IndianCinema #indianmoviescenesunnydeol border full movie border movie, border film, border hindi full movie, border sunny deol full movie, border sunny deol dialogue, border sunil shetty movie , border 1971 full hindi movie, hindi patriotic movies, , ye dharti meri maa hai sunil shetty, sunny deol border dialogue, sunny deol border movie, border movie dialogues, hindi action movies, bollywood action movies, border movie dialogue, border movie dialogue sunil shetty, border movie ye dharti meri mata hai, sunny deol best action movies, sunil shetty best action movies, hindi action full movie hd, bollywood action movie full hd
2:50:50
बॉर्डर: Border (1997) Full Movie | Blockbuster Hindi Patriotic Movie | Sunny Deol | Suniel Shetty
Border is a 1997 Indian Hindi-language epic war film written, produced and directed by J. ...
published: 19 Dec 2022
Play in Full Screen
12:36
Border (1997) On Location | Suniel Shetty | Sunny Deol | Akshaye Khanna | Flashback Video
Watch the shooting of a scene from the 1997 Hindi action film 'Border' Starring Suniel She...
published: 13 Feb 2022
Play in Full Screen
6:39
To Chalun - Border (1997) 1080p By Real HD
Song : To Chalun Movie: Border Artist : Sunny Deol, Sunil Shetty, Sharbani Mukherjee Singe...
published: 29 Sep 2020
Play in Full Screen
7:23
To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hindi Hits 0
To Chalun Full HD Video Song | Border | Sunny Deol, Sunil Shetty, Akshaye Khanna | 90's Hi...
published: 16 Jun 2019
Play in Full Screen
1:49
Border Movie | Trailer | Bollywood | 13 June, 1997 | Sunny Deol | J P Dutta
It is a sincere effort to recreate old age super hit movies into current movie scenario. I...
published: 23 Jun 2017
Play in Full Screen
0:46
Sudesh Berry’s Real Stunt During The Shooting Of Film Border (1997) #shorts #flashback #retro
About Lehren: Lehren (https://en.wikipedia.org/wiki/Lehren) is a complete Entertainment N...
published: 15 Aug 2022
Play in Full Screen
54:00
Border Movie All Songs||Sunny Deol & Sunil Shetty & Akshaye Khanna||MOVIE SONGS||
( 𝑊𝑒𝑙𝑐𝑜𝑚𝑒 )      ...
published: 26 Jan 2022
Play in Full Screen
6:19
बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song
बॉर्डर: मेरे दुश्मन मेरे भाई 4K - सनी देओल - हरिहरन - Border Movie 4K Song Song: Mere Du...
published: 25 Dec 2021
Play in Full Screen
1:41
BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023)
BORDER 1997 MOVIE STAR CAST THEN AND NOW HOW THEY CHANGE (1997VS2023) Support Please Our ...
published: 31 Jan 2023
Play in Full Screen
11:50
Sandese Aate Hai | ❤️90s Jhankar❤️ | Border (1997) Roop Kumar Rathod, Sonu Nigam | Sunny, Suniel
Movie:Border (1997) Singer:Roop Kumar Rathod, Sonu Nigam Lyricist:Javed Akhtar Composer:An...
published: 11 Jun 2023
Play in Full Screen

Border (1997 film)

Border is a 1997 Bollywood war drama film based on the Indo-Pakistani War of 1971. J. P. Dutta directed and produced this war epic which stars Sunny Deol, Sunil Shetty, Akshaye Khanna, Jackie Shroff, Tabu, Pooja Bhatt, Puneet Issar, Kulbhushan Kharbanda, Raakhee and Sharbani Mukherjee. It is the highest grossing Indian film of 1997 and when adjusted for inflation holds as the ninth highest grossing Hindi film of the 90s decade.

The movie is an adaptation from real life events that happened at the Battle of Longewala fought in Rajasthan (Western Theatre) during the Indo-Pakistani War of 1971 and Bangladesh Liberation War. It is about how a band of 120 soldiers of the Punjab regiment of the Indian Army headed by Major Kuldip Singh Chandpuri successfully defended their post all night against a whole tank regiment of the Pakistani Army (The casualties on the Indian side was highly exaggerated in the film), until assistance came from the Indian Air Force the next morning. The film was a critical and commercial hit in India.

'); } 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)); } }); }); }); // -->

Latest News for: Border

Edit

Sharp decline in international tourism to U.S. amid political tensions, tougher border controls

CBS News 05 May 2025
The U.S. tourism industry had been banking on a good year after the number of international visitors to the U.S. jumped in 2024. But as CBS News' Elise Preston reports, tourists have changed their plans ... .
Edit

BSF to get 16 new battalions, 2 field HQs for Pakistan, Bangladesh borders

The Hindu 05 May 2025
The paramilitary force has 193 battalions as of now to guard the two fronts. A battalion of the border force consists of over 1,000 troopers. Hence, the overall strength of the 16 new battalions will be around 17,000 personnel ....
Edit

Expanding beyond borders: Sohar International Marks Official Inauguration of KSA Branch

Times of Oman 05 May 2025
As part of its ongoing pursuit of strategic growth and enhanced regional relevance, Sohar International recently celebrated the official inauguration of its ....
Edit

Germany to tighten border controls but stop short of closures

Famagusta Gazette 05 May 2025
... border but would increase scrutiny of arrivals ... “They will include stepping up border controls and an increased number of rejections.”.
Edit

Pakistan Violates Ceasefire Again In Multiple Border Areas; Indian Army Retaliates

Zeenews 05 May 2025
The Pakistan Army resorted to unprovoked small arms firing across the LoC in areas opposite Kupwara, Baramulla, Poonch, Rajauri, Mendhar, Naushera, Sunderbani, and Akhnoor areas of the Union Territory of Jammu and Kashmir ... .
Edit

CARTOONS: How the left feels about Trump closing the border

Review Journal 05 May 2025
Take a look at some editorial cartoons from across the U.S. and world ....
Edit

Why Indians abandoning their children at US border is on Trump's radar

India Today 05 May 2025
Why Indians abandoning their children at US border is on Trump's radar ... .
Edit

Lebanon: Fears Syrian sectarian clashes may cross the border

Virtual Jerusalem 05 May 2025
As the new Syrian regime continues to attack the Druze community, many in Lebanon fear clashes between supporters of the regime and Lebanese Druze.� | Read More�News from Israel ....
Edit

Lebanese army seizes Captagon pills, equipment at Syrian border

Arab News 05 May 2025
Updated 1 min 7 sec ago. Arab News. May 05, 2025 09.14. .
Edit

Lebanese army raids captagon production facility on Lebanon-Syria border

LBC International 05 May 2025
The Lebanese army said it dismantled a captagon production facility near the Syrian border as ...
Edit

Flight club: Pinching pigeons on the India-Pakistan border

Arab News 05 May 2025
Updated 1 min 11 sec ago. AFP. May 05, 2025 06.51. .
Edit

Flight club: Pinching pigeons on the India-Pakistan border. Do they carry cameras?

The Times of India 05 May 2025
... both sides of the Himalayan border seek to capture prized birds from each other.
×