Click here to Skip to main content
Page 1 of 6
Page Size: 10 · 25 · 50


Tag filtered by:  Browser [x]
Tip/Trick 10 May 2013   license: CPOL
A simple Registry change will enable IE to display JSON responses.
Tip/Trick 9 May 2013   license: CPOL
Different methods to pass value between pages in ASP.NET
Answer 7 May 2013   license: CPOL
I did it by adding history.back() at end .Previously it was "window.open('ABC.aspx"', 'TEST', 'width=800, height=700, scrollbars=yes,resizable=yes, status=no, toolbar=no, location=no, top=45, left=45');"; changed it to "window.open('ABC.aspx"', 'TEST', 'width=800, height=700,...
Answer 6 May 2013   license: CPOL
Hello,You may want to have a look at this Great Article.Regards,
Question 6 May 2013   license: CPOL
hi every body. i want capture browser traffic and resend it also i want get response stream and resend it to browser. everything is ok but in some case the result webpage dose not appear correctly. its my first function : private void StartHttpListening() { while...
Answer 5 May 2013   license: CPOL
I don't think you realize quite how much work is involved, and how many (conflicting) standards are going to be involved here...but probably the best route is to start with an open source browser and see how they do it. There are a few, and a quick google will find you a fair amount of info, but...
Answer 5 May 2013   license: CPOL
You can use the webbrowser control, I think there is one for both WPF and winforms?But then you would have internet explorer rendering under it.Not even Google Chrome is programmed from the ground up, it uses WebKit for rendering.I made a wpf app before with browser possibilities. I used...
Question 5 May 2013   license: CPOL
Hi,I'm planning to create a web browser from scratch using C#. However I don't know how and where to start. I also need to know all the components needed. I would appreciate any advice or help.
Question 3 May 2013   license: CPOL
I have Create a WPF Browser application ,which is taking image from local disk but i want it to load image from Database server,and again Save it to Database after doing editing in image, i have done a lot of search and find that i have t o use WCF layer for it,but didn't get any success due to...
Answer 2 May 2013   license: CPOL
Thanks all,Can anyone let me know how to remove top entry from browser history ? Can we prevent a specific url to be entered in browser history ?
Tip/Trick 1 May 2013   license: CPOL
This tip will help you to communicate with a cross domain Iframe which is added in the form.
Question 1 May 2013   license: CPOL
Hello,I am getting caching issue with the browser "Internet Explorer".My web application generates pdf files and I have a results page with links to those PDFs.If I refresh page then it deletes the old file and re-generate the new pdf file.But when I click on the link using...
Answer 30 Apr 2013   license: CPOL
That's client side stuff - you would use javascript for that. Here's a javascript function that will return an array containing the IDs of all the elements (that have IDs) in the chosen div. You'll have to enumerate them and decide which children you need to use. This means that all the items...
Question 30 Apr 2013   license: CPOL
How do I get vb.net to add all links within a particular div from vb browser?I'm trying to get all links from the div class linksmain.E.g.ImageImage
Answer 29 Apr 2013   license: CPOL
Rather than trying to handle the back button, I would suggest working around with how you display the popup on the user page. try using an ajax request for that popup.
Answer 29 Apr 2013   license: CPOL
hi,Try this, Try to delete the previous history from the browser...http://www.ehow.com/how_7512704_delete-history-aspnet.html[^]
Question 29 Apr 2013   license: CPOL
Hi I had a page lets say User.aspx. It shows all users on a grid.On clicking view column a a row , a pop up appear that display user details. Now close the pop up and go to another page directly. Lets say CompanyDetails.aspx. Now on clicking browser back button server appear as page redirect...
Tip/Trick 18 Apr 2013   license: CPOL
Problems with the ASP.Net engine caused by the increase of tablet browsers, IE10 and user agents.
Tip/Trick 7 Apr 2013   license: CPOL
Use this script to create Bookmarks that enable quick Login to your favourite sites.
Question 3 Apr 2013   license: CPOL
Just like we have autocomplete=off to turn off auto suggestions in web forms, is there a way to disable saving of passwords in the browser?
Question 30 Mar 2013   license: CPOL
I'm interested in building an IE-8 and later toolbar and I could use some assistance in locating some information on how to do such a thing.I have a very mundane task of having to open a webpage and then manually clicking 50 different links with static identifiers -- only to open another...
Answer 28 Mar 2013   license: CPOL
AFAIK, you cannot hide it. In order to render the page correctly and completely, CSS & JavaScript will be downloaded on client browser, post which one can have a look at it. Developer tools of browsers clearly expose the CSS & scripts involved in it. For scripts, you can 'minify' it such...
Question 28 Mar 2013   license: CPOL
Hi How can we hide CSS /Java Script file in web application.If someone view user FireBug/Resource in Chrome , any one can view details of above said files. Also someone can directly browse a file if he know the Path.How to prevent it ? Many thanks in advance
Tip/Trick 27 Mar 2013   license: CPOL
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes
Answer 22 Mar 2013   license: CPOL
IE7 is a web browser used for navigating the World Wide Web. Yes, it runs just fine on Windows XP, if you still have XP. There is no need to configure it, it will work just fine.
Question 22 Mar 2013   license: CPOL
hi alli want to know about IE7?Do Configure IE7 in Wndows XP?Thanks So Much
Question 18 Mar 2013   license: CPOL
Hi, I would like to know how to realize an event when I click to an object on the web page which was loaded in browser. For example: how to realize when I click to box user name in the gmail web page, tks u
Answer 18 Mar 2013   license: CPOL
It does not make any sense. This data exists only on the client side; and the client has fool control over this data, which can be purged at any time. In contrast, your Web application cannot access or limit the user's access.—SA
Answer 18 Mar 2013   license: CPOL
Hello,To protect the privacy of the users, there are limitations to how JavaScript can access this object. Hence browsers will not allow you use methods other than those mentioned below.length - Returns the number of items (URL's) in historyback - Loads the previous URL in history...
Question 18 Mar 2013   license: CPOL
Hello! I need to password protect or prevent deleting history from opera browser (and any other browsers on my PC). Is it possible? How? Thanks
Answer 13 Mar 2013   license: CPOL
Use modernizr[^] instead.Quote:Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.
Answer 13 Mar 2013   license: CPOL
it works now.Browser detection// Detect the browsernamebrowsername=navigator.appName;if (browsername.indexOf("Netscape")!=-1) {browsername="NS"}else{if (browsername.indexOf("Microsoft")!=-1) {browsername="MSIE"}else...
Question 13 Mar 2013   license: CPOL
Hi i am looking for a code that can check the browser and version of a visitor.Based on the outcome it should direct it to the HTML5 supported website otherwise the code needs to direct the user to annon compliant website.This is my code, but it's not working: ...
Answer 7 Mar 2013   license: CPOL
Since we might or might not have control over the web page loaded in our Web Browser control based application, so for the web pages A) Code for those web pages on which we have controlB) Code for those web pages on which we don't have controlA) Code for those web pages on which we...
Question 24 Feb 2013   license: CPOL
i need to upload a file on a web form, when i click the upload button, a filedialog appears where i have to search and select the filei would like to automate this process(so make a program that automatically selects a file to upload to the web form)does annyone know how to do...
Answer 14 Feb 2013   license: CPOL
A very practical example would be plug ins for PhotoShop or other graphics programs.The application gives the essential functionality, but other developers can write plug ins that extends that functionality - adding different filters, effects etc.As you mention jQuery in your tags,...
Answer 14 Feb 2013   license: CPOL
Yes, to add features. On of the important point is: the host application is developed by one party, but some plug-ins can be developed by others, such as users or 3rd-parties.I don't know why explaining the uses. Isn't that obvious? It can be used nearly anywhere. Do you know the Browser...
Question 14 Feb 2013   license: CPOL
Hi all,i have doubt in general term of plugins..ya i searched about it in net, got point like its a program that add extra features to existing application..but i couldnt understood clearly ..can any one explain it with practially?
Answer 11 Feb 2013   license: CPOL
PowerPoint?! Who told you that Chrome should open such documents? This is a proprietary thing. Therefore, standard behavior is the one of Chrome; and on IE it is… one of its bells and whistles.You should never rely on such things. You want standard behavior which you can reasonably...
Question 11 Feb 2013   license: CPOL
HI , i had developed an application using asp.net with c# to display the files in gridview with linkbuttons.so when we click on that link file will open.i can open the file using IE but problem is with Google Chrome it is directly opening not asking with download prompt message like open ,...
Question 11 Jan 2013   license: CPOL
Does cross domain issue occur with sub domain also?for ex:I my web service hosted on "service.mydomain.com" and my web app is hosted in "mobile.mydomain.com" and I am calling the web service using the client side script, will this cross domain issue apply or not?
Question 11 Jan 2013   license: CPOL
Is there any way to disable the browser cross domain handling as we do in chrome?chrome --disable-web-security
Answer 9 Jan 2013   license: CPOL
yeah sure, if we use different APIs in Our application Then Definitly we can use the content of different website in our application if site are not restricted us for getting the data..
Question 9 Jan 2013   license: CPOL
Hi,I am trying to create a Google chrome extension, where I need to take content of other website. I'm using jQuery because many suggested me to use it for Google extensions. Is it possible to take the content of another website using jQuery? If so, please show me how to do this.If not,...
Answer 4 Jan 2013   license: CPOL
If you check out the site: http://www.ie6countdown.com/[^] you'll notice that IE6 is thankfully dying out.My suggestion would be to not try and support IE6. If it just a case that you are still using it, I would suggest updating your IE. That is the easiest way to solve this issue.
Question 3 Jan 2013   license: CPOL
hiPlease open this site linkhttp://revenuedepartment.gujarat.gov.in/index.asp[^]At left end side have menu which is not showing in IE6.I have window xp ,sp 2.I can't understand wahts the problem.If you know, then help me to solve this problemThanks
Answer 29 Dec 2012   license: CPOL
Hypertext Transfer Protocol Secure (HTTPS) is a widely used communications protocol for secure communication over a computer networkHTTPS (Hypertext Transfer Protocol over Secure Socket Layer, or HTTP over SSL) is a Web protocol developed by Netscape and built into browser applications that...
Question 29 Dec 2012   license: CPOL
Hi,Can anyone answer me What is HTTPS mean?I mean this as "The Hypertext Transfer Protocol Secure (HTTPS) is a combination of the Hypertext Transfer Protocol and a cryptographic protocol.It is an encrypted form of information transfer on the internet."But I am confuse at when send...
Answer 9 Dec 2012   license: CPOL
What is sounds Like you are trying to do is, take a predetermined list of websites that are listed in a text documenton on the local file system.(Need to determine How they are listed in the Text document,1 per line,or as a Delimited file of some sort)Then Using a Web browser control Open...

Page 1 of 6
1 2 3 4 5 6


Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid