3
votes
3answers
50 views
What html markups to use for displaying label/value data ?
I want to render a profile user container that contains a list of labels and their associated values.
Here is an excerpt of information and layout I'd like to display:
First Name …
0
votes
3answers
50 views
How to Parse Some Wiki Markup
Hey guys, given a data set in plain text such as the following:
==Events==
* [[312]] – [[Constantine the Great]] is said to have received his famous [[Battle of Milvian …
0
votes
2answers
31 views
Original Markup inInternet Explorer in Range / Selection
I am extracting content selected by the user via this function:
function getSelectionHTML() {
var userSelection;
if (window.getSelection)
{
// W3C Ranges
userSelect …
0
votes
4answers
32 views
How to use extensions and utility methods in markup?
Ok. This is probably a really stupid question, but I'm going to ask it anyway...
How can I use extensions and utility methods in my ASP.Net markup? For example, (say) I have a Dat …
0
votes
0answers
17 views
Applying a Style to a control that plays an animation based on a databinding to the view model and a control specific field?
So here's the situation, I have a control (code below) that plays an animation from a style datatrigger when a viewmodel property is equal to a value (Binding="{Binding OperatorSta …
3
votes
7answers
181 views
Why is there no standardized wiki markup language?
For as many wiki tools as I have used, each time I must learn yet another markup language. Why doesn't wiki markup get standardized like HTML, XSLT, SVG, and other web languages?
0
votes
2answers
81 views
Trying to embed a DataItem within an asp:Image control’s ImageUrl property
I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered output
/profilep …
0
votes
5answers
118 views
Regular Expression for Conditional Substitution of Angle Brackets
Is it possible to create a single regexp to replace < and > with their entity equivalents?
s/<|>/<|>/
0
votes
1answer
33 views
How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor?
Any errors or warnings within the markup pops up the window and it reminds me VB6 error message box, stealing the focus and concentration.
Quite an eyesore.
Is there a way to pre …
1
vote
4answers
59 views
Suggestion for Semantic Markup
I am creating a web GUI for an application I am working on. This particular section will sit within a larger page that is of a good semantic makeup. However, I am unsure what the b …
1
vote
6answers
171 views
Why does HTML markup often enclose text with backticks and single quotes?
I like to save local copies of useful text-heavy pages from the 'Net so I can practice improving their appearance by modifying the markup to include CSS. (What can I say ... It kee …
4
votes
4answers
268 views
What is the best way to style a list of checkboxes
What I'd like to achieve is a layout like this
some label [ ] checkbox 1
[ ] checkbox 2
[ ] checkbox 3
[ ] checkbox 4
[ ] represents a chec …
5
votes
4answers
128 views
Forms: Does your css accomodate your markup or vice versa?
Regarding html forms, a very common markup pattern is:
<form ...>
<p>
<label>Name:</label>
<input .../>
</p>
<p>
<la …
5
votes
9answers
370 views
Testing JavaScript code without recreating markup?
I want to test the JavaScript code in our web app. We are using the jQuery library and .Net MVC. I've looked at these answers, and jqUnit looked nice, so I tried it, just to realiz …
3
votes
3answers
68 views
Style attribute vs setting ID and external Css
I understand the concept of keeping all presentational elements outside of the markup and putting them into an external .css file.
I want to get a feel for what types of situation …
