web

Display Multiple Choice Question on Web Form in Asp.net

In my project I have a web service that returns an Exam object. This object contains a property that returns set of multiple choice questions in Questions[] array. Each Question object in Questions array contains two properties, Question and ChoiceArray. To clear things here's the code, Exam e = service.GetExam(long CenterID); Question...

eclipse validator - Invalid content was found starting with element 'display-name' in web.xml

I am using Eclipse Helios Release. Eclipse xml validater don't like display-name element under in my web.xml here is part of my web.xml http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> PropTax PropTax PropTax org.slco.treasurer.propertytax.servlet.PropTax ....... If I remove display-name...

How can I link a content editor web part in Sharepoint to another URL link?

In Sharepoint, how can I link an image in a content editor web part to another URL link by clicking on it? I pasted my link into the Content Link space but when I apply the change it turns my image into a - and I cannot click the link ...

Techniques for Modular CSS

I want to start using modular CSS, but I'm having trouble figuring out the best way to implement it. I was thinking I could just use a bridging technique, where I have one in my HTML and then @import statements for each module. While I like the simplicity of that method, I'm concerned about the negative effects it has on performance, si...

Help required in resolving problem with Webservice

Hi I am trying to login salesforce through a webservice on Android platform. But I am facing some problems. I am getting a "Socket Exception:Operation timed out" error. I am using the Ksoap2 soap cient ported for Android and WSDL details are from the Partner WSDL of my developer account at Salesforce.I have anabled the "api access".Also,...

How to PARSE HTML Files and SUBMIT information programmatically

Hi guys, I am pretty new in ASP.NET 4 & C# and I would like to know which CODE, Classes could be useful for creating a WEB APPLICATION that could: 01 - Connect to an HTML file on the web. 02 - Parse its content (text content). 03 - Find out specific content in a page (for example looking for specific keywords). Also how to implement...

Is Screen Reader Able To Read Web Page Dynamically Created by JavaScript?

I once thought screen reader for user with impaired eyesight can not read web page dynamically created by javascript, since I am educated to create web page that works even javascript is disabled. Recently, I'm told that screen reader can actually read web content dynamically created in AJAX web application. So, since screen reader c...

How to deliver multiple application versions without confusion?

We currently work on multiple branches of our web application. The VCS of choice is SVN. We have: v1: /trunk, live application, bugfixing v2: /branches/1, additional features, without trunk bugfixes There are more steps planned. The current plan is to have a stable and client accepted v1 and then merge v2 into v1. At that point it's...

Something like GWT but without compiling

Hi folks, I'm studying Computer Science in Germany and recently stumbled upon Web Services and Google Web Toolkit. I thought: "Great, define buttons, input fields, panels, ... just hit compile and it works" Then i thought: "Why hit compile? ..." Question: Is there a technology where I can define buttons, panel, input fields, ... on t...

Is there Python web application framework for creating desktop-like GUI end-to-end applications?

I mean that the user interface and the server logic are like one thing, and no html/js is used. There is an excellent C++ web toolkit, which does exactly this: http://www.webtoolkit.eu/wt Is there python equivalent/alternative? Note: pyjamas does not count - it's great, but client side only. Thanks! ...

Python Simulation: Total Website Traffic Qty Estimation using Personas Segments

Hi. I need to estimate future website traffic & conversion volume based on: 1) Baseline historical averages for 6 differing types of traffic segments 2) How each of those distinct visitor segments interacts with 5 unique content groups After searching the internet I've concluded modules exist that can easily be adapted to fit my as...

what's the best way to maping /newyork to /area.jsp?id=1 ?

now,i using http://xxx.com/area.jsp?id=1 i want create a maping path http://xxx.com/newyork maping to /area.jsp?id=1 how to do is best? BTW:i using Resin(java) + Nginx ...

Send password safely using an ajax request

Hello, just to know, is it possible to send password through an Ajax request safely? I've a login box that calls an ajax request to try the login/pass and retrieve a JSON Object with errors (if any). Should I use a form redirection instead? [EDIT] Store the encrypted password in the database isn't the solution because the login and p...

twitter like open source software for .Net platform?

Hello everyone, I am wondering whether there is twitter like open source platform written in .Net (C#, ASP.Net, SQL Server, etc)? I want to integrate twitter like feature into my own web application, but not want to use public twitter service. thanks in advance, George ...

Using SoupStrainer to parse selectively

Im trying to parse a list of video game titles from a shopping site. however as the item list is all stored inside a tag . This section of the documentation supposedly explains how to parse only part of the document but i cant work it out. my code: from BeautifulSoup import BeautifulSoup import urllib import re url = "Some Shopping ...

Free Web Hosting

i want to launch(publish) my site on the internet? so some one can tell me about free hosting? ...

wcf and pathfinding

Generally I would never expect to see those 2 words together in the same sentenc, however im working on a project that requires me to do simple pathfinding on multiple roads and I'm just trying to work out the best way to do it. I was originally thinking of having a few wcf services that could accept an origin and destinations do the wo...

IIS6 Web Garden

I have a site that's becoming more active. I use a MySQL Database, .NET 3.5, IIS6, Memcached, and state server. I was looking into ways to improve performance and found that web garden adds additional threads for requests. I read that this should be equal to, or equal to + 1, the number of physical processors in the machine. So I tri...

Dynamic Image Creation Using Python over a Web Page

Hello everyone, im new to learning python and i've been trying to implement a text to image converter that runs on a web page. 1.I have succeeded in making the functional code that converts the text into image ,in python using the PIL module. (i.e user enters input text at run time and that gets converted into an image and is stored in...

How can I access the captcha image that was generated when the page was loaded?

On some websites, when you want to login, you need to enter a captcha as well. If I want to provide support for an user to enter a captcha into my application ( which will then log into the website ), how would I do this? My problem is that the link to the captcha image is like this: example.com/captcha , and it serves a different image...