Posts by Alex Sander • 607 points
8 posts
-
2
votes0
answers15
viewsQ: Use of the tag Section in HTML5
Much is said about HTML5 semantics and their new tags, my doubt is, when should you use the tag <section> semantically correct? Is there any rule/criterion/scope for the use of the same?…
-
0
votes1
answer54
viewsA: Cascade Dropdownlist fill and pick up two fields
You can do the following, concatenate the id in your Asp: public function ListarUF() dim sql dim cmd dim rs dim nota dim lista dim i sql = "SELECT * FROM UF ORDER BY UF" set cmd = ObterCommand(sql)…
-
17
votes1
answer628
viewsQ: What is C#metadata?
What is C#/. NET metadata? What are they for, and how can I use them? I was watching a template of Visual Studio, and browsing the files, I came across them.
-
6
votes1
answer406
viewsQ: Authorization in Asp.Net MVC
I’ll try to be clear. In most examples of ASP.NET MVC authentication and access authorization, I see that authorization control is usually done on Controller, with the decoration of the class itself…
-
1
votes4
answers168
viewsA: How to redirect url with htaccess out of the domain?
Just change your property href for href="http://www.google.com"
-
3
votes2
answers3951
viewsA: What is the difference between mouseleave and mouseout?
Basically, the only difference between the two is that, the mouseleave is also fired into the child elements of the selected element, and the mouseout fires only at the selected element. x = 0; y =…
jqueryanswered Alex Sander 607 -
9
votes2
answers33846
viewsA: Passing JS values to another HTML page
Yes, it is possible to pass values by url. Let me give you an example with javascript. In index.html, I create a function that takes a parameter, which is the value I want to pass to another page.…
-
6
votes3
answers446
viewsA: How to write and appear somewhere what I wrote
This can be done with javascript, manipulating the DOM from events. In this example, each time the input value is changed, the value of the div will also be. var alteraValor = function () {…