website

How to organize your site, so that .htaccess works

I am building a Dynamic web site from scratch for the first time so I am new at this. I need to match this URL: www.domain.org/world/2.html with this: www.domain.org/index.php?html=world&rss=2 For that purpose I am using this rewrite rule: RewriteRule ^([^/])/([^/]).html$ /index.php?html=$1&rss=$2 [L] And this should be working, bu...

File upload multi-select

I'm not positive if this is even possible, but is there any way to enable a user to ctrl+click (ie, multi-select) files on a website? Screen shot of what I would like to be able to do via an upload tool, taken from just my standard file explorer: In case this is relevant, the back-end of the site is in C# and the front-end scriptin...

How to fade in/out an HTML DIV container using JavaScript?

I have an DIV container with an id="myDiv" attribute+value. I'd like to fade this in/out smoothly. Would I have to create some sort of run loop with an timer and then modify the opacity value of the DIV? Is jQuery perfect for this kind of stuff? ...

Main Site With 000WebHost

I am trying to create a site with xhtml I have it done I just need to figure out how to upload it I am using 000webhost as my web hoster but whenever I go on my main page it says index of/ then it says all of my sites I want to go directly to m main site how do I do that? ...

ASP.NET WebApp Updatable on the fly

Hi all i have currently got an asp.net website that has had all its code behind files taken out and a separate assembly is used to hold the functionality. This was done as we have a team of designers who continually add new controls and scripts and styles to the site. As a website is not pre-compiled this is not a problem. the trouble i...

Any successful website built on top of Google App Engine?

I would like to know whether there are any websites (not toy projects) that have been successfully built on top of GAE (excluding google) using whatever programming languages or frameworks that are available. ...

Program user's credentials to automatically login to websites

Here's my scenario - I have the credentials for a couple of websites that need username and password to login. I would like to programmatically do this but just don't where to strrt. For example, say the website is www.mywebsite.com and the the U: UserID and P: admin. I am thinking something like this (this is of course pseudo-code)...

Is ASP.NET (webforms) Incompatible with Google Website Optimizer Multivariate Testing?

I've been stuggling all morning trying to get a multivariate test going in google website optimizer. I've copy and pasted the header/footer code into the pages, and setup a basic page section just to see that everything is working. When I try to validate the code its failing saying "No sections detected on test page TestSectionName -...

How do websites like Shelfari and Librarything collect book information?

Do they manually add each book with its cover and author or do they use a scraper? ...

Text vs Image for Website Title Banner?

The website I am creating has a fairly large title text for its banner. Using a plain font gives it a very jagged look, but it seems like an anti-aliased image would be a fairly large download. Which way would be the best choice, or is there a better method for large titles? Here is the banner with pure text. Scaled down it is not as no...

Best way to create a blog with static pages in Ruby

I just visited the Static Website Generation on Ruby toolbox and I don't know which of applications listed there is best suited for a little blog engine. Basically I need: an index page with 1..5 of latest articles with shortened content; possibility to add few main pages and a menu to access them (breadcrumb optional); show articles s...

Mirroring websites in Java

Hello, I need to mirror some websites from my Java application. I was looking for an open source java library to do this job, but didn't find anything suitable. Does anybody know about some java-friendly tool to retrieve entire websites, or must I stick to exec wget from my program? Thanks a lot. ...

create a web site with VS 2010

in previous versions of Visual Studio , when creating a new website, a new website project was created. when i implemented this website on the iis, i could change the default.aspx.cs file, save it and the next time i chose 'browse', the site was updated with the changes i made in the default.aspx.cs file. in the VS2010, choosing new Web...

How can I accept a donation via my website

I have few downloadables on my website which are free. I want to integrate a donate button to my website. Now what will be the best choice to receive the donation PayPal Payment Gateway or if I can use any other method. ...

What is essential in protecting API from abuse?

Just wanted to learn what steps should be taken to prevent API from abuse... ...

calling the function, which is stored in a string variable.

it may be a duplicate of http://stackoverflow.com/questions/1120228/how-to-dynamically-call-a-class-method-in-net and of http://stackoverflow.com/questions/3918431/how-to-achieve-calling-a-function-dynamically-thats-right-the-function-to-be-cal but the above two have solutions which as the answers said are complicated, not for a be...

used reflection in c# works, but two errors need help solving, function called just cannot do anything!

this http://stackoverflow.com/questions/3975659/calling-the-function-which-is-stored-in-a-string-variable wrote the following, but there are two errors which i can not solve, do not understand why they are coming (the error is mentioned with the statement causing it as //error is) please help using System; using System.Collections.Ge...

Is it possible to export the structure and Data of a Sharepoint site for use in a different CMS?

I have a site running on WSS 3.0. We also have a site running on a secure intranet (UNIX based). I have been asked to investigate the possibility of exporting all the data from the Sharepoint site and importing it into a website on the secure intranet. Knowing that WSS keeps its structure and data in an MS-SQL site, but not having muc...

Fixed width website the only real possibility?

When creating a web-site design, is the only real option to provide a fixed content width? I notice most major websites (this one included) center all the content into a fixed width, which ensures all elements look correct on all screen sizes. I think I already know the answer to this, but a colleague seems to think that there should n...

Performance question about Genrating Html Files from database

Hi, I have a web portal on Cricket News India. I have built my own customised CMS to update the news in the website. My questions are Since the data is in the database, will it be a good practice to genarate the html pages out and save it in our server. Advantages that I observe, next time if a user comes server gets the generated h...