web-development

Automatic JRE installation

Good day, Is it possible to have a web page automatically install the JRE? The reason for the concern is that I want to use Java for multimedia content on a web page, and not have to have the user manually download and install the JRE if they don't have it already. . ...

Why does a button event function run during a page reload in ASP.NET ?

public partial class Stats : System.Web.UI.Page { public SqlDataReader DataReader; public SqlCommand Command; string queryString = ("INSERT INTO UserData (UserProfileID, ConfidenceLevel, LoveLevel, HappinessLevel) VALUES ('a051fc1b-4f51-485b-a07d-0f378528974e', 1, 1, 1);"); protected void Page_Load(object sender, Event...

How to design a website for mobile phone users?

How can i start the development of a site that can be browse from mobile phones? For example, if i browse my website http://xavytech.com site from a browser it looks fine which is known by everyone... I am extending my website to browse through nokia mobile phones.. Where should i start? How to write css or should i recreate a new w...

CSS Overflow property not working in iPad

I am designing some html pages for iPad. While trying out css overflow property like yscroll, auto. The scroll bar is not appearing in iPad and also the content not getting scroll. I tried in ipad simulator as well as in device. Is there any other way to achieve this property. Please help me out. Thanks in advance ...

Why the image blurs when it is in motion tween?

I had atleast 20 images.i tried to move it scroll from right to left in Flash MX 2004. When i pr viewed in timeline window it shows actual image moving. But when i exported it into swf it shows as a Blurred image moving. The movie is at http://www.ahilam.com/tes.swf How to solve this. Plz help. Any help will be greatly appreciated. ...

Implementation of a ASP.NET based portal-like application.

There is the requirement, to write a portal like ASP.NET based web application. There should be a lightweigted central application, which implements the primary navigation and the authentication. The design is achieved by masterpages. Then there are several more or less independent applications(old and new ones!!), which should easily ...

Advice me what to do with large project when you work alone !!!

I bet many of you were in such situations in the past. I'm currently working on huge ASP.NET web project. Ad management system of some kind. My boss doesn't want to get more professionals to help me but gives me inexperienced staff that don't even know to program on ASP.NET and think it is an easy task. I deal with programming and desig...

Best-practice for javascript configuration on new web project

Hi all, I would like to ask a question about a new and large scale web project's javascript requirements. We will use lot of javascript, ajax requests, jquery, json objects & jquery plugins in our project. We planning to store global variables and lot of default values in a global site configuration file with php class and ini file on s...

iPhone application development using PhoneGap

Hi All of You, I am interested to develop iPhone applications Using PhoneGap. PhoneGap is an Open-source development tool,by Nitobi team using HTML,CSS and JS. The main use of PhoneGap is for making webApps to look like a native iPhone applications. As i googled, i found the below one, to start the application. http://building-iphone-...

Image Loads and then disappears

I'm having this weird problem one of my pages. The page is XHTML valid, loads perfectly fine on Safari, Firefox but on Chrome the images load fine and then disappear instantly leaving that small icon that appears when the image is not found. I tried disabling all the javascript on the page, but still no luck. I can post a video of the be...

Struts2: How do I tell my index.jsp to forward to a struts2 action?

Oftentimes when I see an index.jsp on a web application it just forwards to another url like login.jsp such as <jsp:forward page="login.jsp" /> When using struts2, I want a similar index.jsp but I want it to forward to an action. How do I do this? ...

What's current best practices for formatting web page?

I haven't done any real web design in a few years, and I'm now tasked with creating a set of web pages that will need relatively complex (and exact) layouts. I've started exploring CSS, and while I'm starting to get an idea of how to use it, it doesn't really seem like the appropriate tool for the kind of layout I need. The layout I ne...

Render partial in an extension method fails

I'm creating a tabcontainer that shows information from partials. The code that i've created is as follows: //Entering extension method, m_helper is of type HtmlHelper foreach (var tab in m_tabList) { sb.AppendLine("<div class='tabContent'>"); m_helper.RenderPartial(tab.PartialName); sb.AppendLine("</div>"); } //Returni...

Flash Webcam Permissions

I'm having an issue with flash, which I am not really familiar with. I'm basing this code off of what came with the wowza media server in the video chat example, but unlike that example flash is not prompting me for whether or not to allow the video camera. Below is my actionscript: import flash.events.MouseEvent; import flash.events....

Fancybox display issues on iPad

Hi. I'm using the Fancybox on this page: http://bit.ly/9T4LPC I've set it to show the videos in the top carousel in a Fancybox only if the browser is Safari/iPad. If you click one of the videos in the top content carousel, you'll see some extra lines outside of the Fancybox. Plus, you'll see that the title item (set to titlePosition: "o...

Allow users to play mp3 files but dont expose them directly on the web

I want to store some mp3s in a folder wich is no public, cant be directly accessed trough the web and allow users to hear/download the songs with a browser only if they are logged in. How can I do that ? I do my web development with django, but If I know how it works is enough. ...

How to know when a web page was last updated ?

How can you detect when somebody else's web page was last updated (or was changed)? ...

java web programming best book

Possible Duplicates: best java book for web development Best Java web architecture book / website? I'm new to java EE area and I would like to find a good book that teaches me the core concepts of java web development such as jsp,servlets, sessions, ejb,...... I have found Java for the Web with Servlets, JSP, and EJB: A De...

Can I get into trouble for identifying vulnerabilities in someone elses website?

Is it possible to get into legal trouble for identifying vulnerabilities in a web application even if you don't exploit them? I have considered using tools like NetSparker on occasion to see if a site has any vulnerabilities and I'd like to contact the owner of the site to see if they'd be interested in me fixing it. I suspect that s...

Web-Based Configuration Interface for Console Applications

I've been using app.Config and INI files to configure my applications but I wanted to make it more user-friendly. I've already encountered some applications ( most of them are java based ) that its configurations are via web interface ( I think the application is hosting jsp ). How can I do this on .net platform fast and easy? Thanks ...