web

How to test your web applications on mobile?

Hi, I don't have money to buy mobile phones, iPhone, etc, but I do want to make my web applications available to mobile devices. Are there some software to stimulate these devices, or what should I do? ...

Returning a Dataview in a WCF Service

I have a method in my web service which returns a DataView, I have setup a proxy which talks to this service but when i make this method in the proxy public DataView GetSales(DateTime SalesDate) { ServiceClient client = new ServiceClient(); return client.GetSalesForDay(SalesDate); } I get the error "Cannot impl...

Resources specific to web startups

I know there's a lot out there on startups. I listen to a few startup podcasts, and have been reading some books on startups (I just finished Founders at Work), but I'm looking for some more information specifically on web startups, and even more specifically, on web startups that provide a services or transactions, such as Mint, PayPal ...

Amazon web service with item lookup by UPC

My Working Envirnment is Visual Studio 2008 + C# I am working on Amazon WebService, I want to fetch the data from Amazon using SOAP but when I am trying to pass IDType = UPC it gives me below error message, so what can I do for this ? Error: "036725229884 is not a valid value for ItemId. Please change this value and retry your request...

Removed WebMethod from ASP.NET Webservice, method still shows up

I changed the signature of one of my web methods in a web service and couldn't get it to update, so now I've removed the whole method and rebuilt the project and that removed method still shows up and works! Is there a WebService cache in Visual Studio I don't know about? I've cleaned, rebuilt, built the project, even searching the pro...

Obtaining IP-based latitude and longitude with web API

Hello, Which services do you know with which you can obtain latitude and longitude given the IP? Thanks in advance! Manuel ...

Using Frameset with Treeviews in ASP.Net

Afternoon, I am trying have an HTML file containing a frameset which contains two frames. I have populated the left Frame with a URL containing a TreeView with URL's for the nodes. I would like the to be able to select a URL from the treeview in the left hand frame, and have it set the src of the right hand frame to be that URL. Is that ...

Search API, find RSS Feeds?

Im looking for a search api that will allow me to search for rss feeds. It will either be a regular search feed that then returns the content type - allowing me to filter by rss items only, or a special rss-only index. Does anyone know of any? ...

How to filter adult words

Hi; I am developing a web application, and do not want people to publish adult (pornographic) content. So is there a service or a list of words which are porn related? Or is there another way to filter adult content? Thanks.. See also How do you implement a good profanity filter? ...

Disabling the "save password" prompt in web browsers

hi guys. How do I disable the save password prompt in web browsers whenever I'm submitting a form. I've seen a few bank sites where this doesn't come up. Are they doing it through JS or there any http headers or HTML meta tags available to achieve this? I'm trying to do this for a mobile application. Please pour your ideas. ...

How does web applications handle multiple browser window

Hello, I have a very basic knowledge of the web programming, and I couldn't figure out the answer to this question. Typically, a cookie is used to identify a session in web applications. However, as far as I know, multiple browser windows share cookies. In that case, how does web applications distinguish between the tabs? ADDED : I gu...

C++ and Visual Studio 2008, how to develop the following web extracting application? Follow-up of last general question

The purpose is to use C++ in a useful way. I have just started programming and have made a few small applications in C and C#. My understanding is that programming for web and thing related to web is nowadays a very easy task. Please note this is for personnel learning, not for rent a coder or any money making. An application which ca...

Creating webpage on form submit?

How is it possible to allow a user to create a webpage containing some html, based on their entries in a form? ie. I would want them to be able to input a name and when the button is clicked, a webpage called that name would be created. I imagine that this must be possible in php, but what functions/code would I be using? Thank you! ...

What's the best technology for a medium complexity web application?

I'm planning to work on a web application of reasonable complexity and am wondering what technology to go with. It will probably start with one person, but there will be 2 or 3 more eventually. My first requirement is to be able to do this as quickly as possible - preferably with as less code as possible. Secondly requirement is that it ...

How can i know the width and height of html elements ?

i want to know the width and height of the html elements like divs body and tables. is this possible ? i want the calculated width,height and not the one that i apply to the elements. using jquery would be fine. thanks ...

Given a Wsdl file what are the steps to consume a web service over the internet

I have been given a wsdl file and i need to consume a web service using this wsdl file over the internet...i need to do this in jave ...could someone tell me the steps for doing this..i would also appreciate some useful links... ...

HttpUtility does not exist in the current context

I get this error when compiling a C# application. Looks like a trivial error, but I can't get around it. My setup is Windows 7 64 bit. Visual-Studio 2010 C# express B2Rel. I added a reference to System.Web.dll located at C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0, but it has a yellow exclamation ...

Monitoring my web application performance from the client browser

Hi, I want to be able to monitor the performance(load time of the entire page, load times of individually downloaded js/cs files , amount of memory used by the browser for the page,etc) of my web application from the perspective of the user(i.e the browser client). Is there any tool/plugin , that can help me monitor all of these? ...

What does the term "blocking" mean in programming?

Could someone provide a layman definition and use case? ...

User confirmation in MVP/MVC along with web solution

How does one handle a user confirmation when using MVP/MVC in a Web environment? Presenter: if (_view.AskUserForConfirmation()) { // do something } In a winforms project this won't be any problem but in a web environment the confirmation answear will come one postback after the preseter code, how does one handle such a thing? ...