2
votes
Keeping key value pairs together in HTML <select/> with JQuery?
The HTML tag has an attribute called "value", where you can store your key.
e.g.:
<option value=1>Jason</option>
I don't know how t …
0
votes
Filter out HTML tags and resolve entities in python
Regular expressions needn't scare you. Just start with easy stuff. Let's take removing tags for example. You'll want to look for the starts and ends of tags, thus:
mystring.sub('< …
0
votes
Filter out HTML tags and resolve entities in python
Looking at the amount of sense people are demonstrating in other answers here, I'd say that using a regex probably isn't the best idea for your situation. Go for something tried and tested, and tre …
0
votes
Have both HTML and ASPX web page in one site
If you're running an ASP.NET in a Virtual Directory in IIS, you need to configure it as an application. To do this:
Open up IIS Manager (if you have Administrative Tools in your Start …
0
votes
Things a programmer should know before building a website
Apply the KISS principle.
Put your javascript references (<script> tags) at the bottom of the page. That way …
