When do you call Microsoft.Security.Application.AntiXss.HtmlEncode? Do you do it when the user submits the information or do you do when you're displaying the information?
How about for basic stuff ... |
Using Microsoft's AntiXssLibrary, how do you handle input that needs to be edited later?
For example:
User enters:
<i>title</i>
Saved to the database as:
<i>title</i>
On an edit page, ... |
At what stage does my input in the textarea change from being this raw text, and become HTML?
For example, say I indent 4 spaces
like this
Then the WMD Showdown.js will render it ... |
I am trying to write a simple web app in scheme and I am using Drscheme for the job. I am wondering if there is a way to input html code ... |
If i want to take a file as a input in HTML i will be using
<input type="file">
Now my question is, is it possible to take a whole directory as a ... |
I am wondering if there is a way to generically detect a masked input field (like a password edit box) on a web page.
|
For a major school project I am implementing a real-time collaborative editor. For a little background, basically what this means is that two(or more) users can type into a document at ... |
|
I am going to implement standard functionality - birthdate input on web form for PC.
There are lots of interfaces how to implement this.
- Date picker (OMG, I can't stand picking date ...
|
I want to use a picture as my website design. It's a plain one, like google's.
<img src... done... >
now, I want to place an input box at the text area of ... |
Does anyone know a Linux browser (it can be console-based) that can read an HTML page from its standard input? For example, I want to do this:
generate_html | browser
Thanks!
|
We have the following snippet to get focus on a particular text field in a form onmouseover="this.focus();"
We have lots of text input fields throughout the user interface ... |
I have implemented a search engine in C for my html website. My entire web is programmed in C.
I understand that html input sanitization is necessary because an attacker can input ... |
I'm not a web guy, so this might be something really simple I'm missing, but:
Consider the following page:
http://pastehtml.com/view/1bg9qno.html
Which is basically a list of <input>s, and each input ... |
I have this HTML code with multiple inputs with the same name:
<input type="hidden" value="42" name="authors" />
<input type="hidden" value="13" name="authors" />
<input type="hidden" value="33" name="authors" />
The order of the values is important. Does ... |
Can i give a tooltip to a input type text in case max length of that textbox is reached in html???
|
Is it possible to create an array in an array for inputs?
So:
<input type="text" name="array[array[]]" />
Thanks.
|
can anybody tell me, how to write function in plpgsql, which generates html table and is called like this:
SELECT funktionName( 'Select name,
salary*1.2 from employees where
... |
If I'm creating a webpage that will be displayed in IE on Phone 7, can I specify the InputScope that text boxes in the webpage should use?
|
i have 2 radio buttons and i want one on them to be shown as slected when the page is loaded.
which property i should use ,and how?
Rock
Alternative
... |
I have an html input box, but only numeric data is data. How can I enforce that?
|
What's the easiest way, in repeatable manner, to make Plone WYSIWYG and HTML input accept all elements and styles?
The use case
- Lot of private sites
- Trusted editors
- Advanced editors (able to produce hand crafted ...
|
I am working on a PHP page that has a single input form as follows:
<form id='barcode_reader'>
<input id="barcode" name="barcode" type="text">
<input type='submit' value="">
</form>
I am using a pre-programmed non-modifiable USB barcode scanner for input. ... |
I am trying to logging using php's curl.
I am using LiveHTTPHeaders to see what headers are sent.
When I login through form it sends
action=autorize&login=myname&pass=mypass&x=14&y=10
I can see action, login, pass <inputs>.
The problem ... |
I devise a web site. I am using PHP, XML and HTML. There is input forms in my HTML files and I want to implement auto-suggestion in input forms.
When you ... |
When using the html input tag, what is the difference between the use of the name and id attributes especially that I found that they are sometimes named the same?
Thanks.
... |
Lets say i have a html file that contain a form:
<form method="post" action="url">
<input type="text" id="fullname" />
<input type="text" id="bodyText" />
<input ...
|
I am trying to make this code below to take the current window to the root of the domain.
say if you are on http://www.example.com/myprofile/status/… if you click on the image in ... |
CakePHP's page on Data Santiziation states one should store possibly raw HTML from user input in one's database and sanitize at time of output:
For sanitization against XSS ... |
I am new to mysql and php i need help doing something I'm sure is fairly simple. Maybe I am not going about it the right way? Basically I am gonna have several hundred if not thousands of mini info pages (IE) Company1 Phone Website(link) Brief Description Photos The above would basically repeated for every company on a seperate page integrated ... |