html

How to change HyperLink NavigteURL on Click

As you all know, HyperLink have a navigateURL property and whenever you click on a hyperlink you'll redirect to link destination, it is ok. So LinkButton in visual cases are same as Hyperlink but it have not a navigateURL property and instead you can redirect user by using Response.Redirect on OnClick event of LinkButton, the differet ...

Distribute searchable documentation on CD?

We have a need to publish a presentation in the form of a website(or some other form) on CD with contents, search, and glossary capabilities. Sort of how some magazines are putting out electronic cds with all their issues for the previous year. Unfortunately I dont know the right terminology to do a proper search for this. Currently I ...

How to create a gradient background which works with most/all browsers ?

Here is what I want to make, somehow: 1- A gradient background from top and down. There should be 2 colors, lets call them color1 and color2. 2- I want the gradient to be about one page, so it starts on top with color1, and then ends about one page down with color2. 3- Then I want color2 to continue all the way down for whatever size ...

color to B/W javascript affect

Is there any known/simple/open-source library that provide a javascript function that will switch colored picture that is displayed in an html page into a black and white That can be used in all the most used browsers (IE, FireFox, Chrome)? I mean something like: <html> ... <img id="myPic" src="pic.jpg"> ... <script type="text/javasc...

text field with dropdown in rails

Hi All, I'm trying to build a form field that can either accept a text entry, or select an option from a dropdown. In rails, the autocomplete plugin is close to what I need, except I want the dropdown to be available before the user types anything in the text field. Is there an example of this out there somewhere? thx for the help, -...

Clean user HTML in .net

My C# site allows users to submit HTML to be displayed on the site. I would like to limit the tags and attributes allowed for the HTML, but am unable to figure out how to do this in .net. I've tried using Html Agility Pack, but I don't see how to modify the HTML, I can see how to go through the HTML and find certain data, but actually g...

Title attribute to img tag not displaying in Firefox 3.0 Win XP

I have the following tag on my webpage which I am designing in Firefox 3.0: <img src="/path/picture.png" alt="someText" title="Click here!" /> When I use Internet Explorer 7, the text "Click here!" appears when I hover over my icon. However, Firefox does not display any tooltip when I hover over the image. I've read that Firefox does ...

Most lightest DOM Object.

Hi, Wanted to know which is the most lightest HTML element. Have a huge set of JSON data which i have to display in proper readable format, hence going to loop through the data and create dynamic elements. Which is the most lightest element of HTML, lightest as in which takes the least amount of memory and is easily rendered by the bro...

How to access 3rd Party cookies in the Browser ?

How to access 3rd Party cookies in the Browser ? ...

CSS background-color on table td displaying incorrectly in Internet Explorer 6

I have some pretty simple HTML and CSS that doesn't work in Internet Explorer 6. <!DOCTYPE HTML> <html> <head> <style> table td.one.read {background-color:#FFD700;} table td.two.read {background-color:#0000ff;} table td.three.read {background-color:#ff8c00;} </style> </...

JQuery: How to create a lighbox to open up a webpage

Using JQuery, how do I create a lightbox effect but instead of display a single photo - I want to display an HTML document within the lightbox. Essentially, if you have every used Facebook - they do this effect all the time. Instead of going to a new webpage to send a message, it just pops up the message HTML form inline on the current ...

Two differents OnClick on two divs, one over the other

I have two divs, a big one and a smaller over the other, each div has its own OnClick method. The problem I have is when I clicked the smaller div, the big div's OnClick method is called too. Who can I avoid that? ...

how can i add arabic language with php

i want to create an interface of website in Arabic language....how can i do that...do i need any plugin to be already installed on my hosting server or mylocalhost how can i do that...please let me know in detail... ...

Replace newlines with <p> paragraph and with <br /> tags

So I know how to replace newlines in my C# code. But replacing a newline for a <br /> tag isn't always very correct. So I was wondering what kind of strategy do others use? The correct way I guess would be to use <p> tags and <br /> tags. Here are some examples of the results I would like to get. If there is no newline I want the te...

How do I set span background-color so it colors the background throughout the line like in div (display: block; not an option).

I need to style some text within a pre-element. For that, I use an inline span-element like this: <pre> some text <span style="background-color:#ddd;">and some text with a different background</span> and some more text </pre> Then the html is rendered, the span-elements background is only changed underneath the text. Is it somehow p...

iterate through rows in an html table with c#

I have an html table in an aspx page (C#) that has columns like 1.CheckBox 2.Text 3.Text 4.TextBox I want to iterate through the table one row at a time and process (run a stored procedure based on column2) based on whether the checkbox is checked or not. How will I be able to do that? ...

POST with links without JavaScript

Let's say I have a calendar on my page and clicking on a day would mark that day as complete. But I want to use POST and not GET, since GET is not suitable for this kind of stuff (changing something). And I also don't want to use JavaScript. What I'm going for here is to build a page that will work without JavaScript (which I will use t...

document.createElement text field length

I'm using the following code to add rows with text fields dynamically at the touch of a button. The issue I have is that the text fields that are being created in these rows are not the size I want. Is there a way to specify the length of a text field in this situation? function addNewRow() { var iX = document.getElementById("txtI...

Set an image button to fire when enter key is pressed

Obviously I know how to do this with DefaultButtons within an ASP.NET web form. However, the way our client side developer wrote the code, he has a submit button done via javascript: So the javascript is rendering the HTML. <img id="submitBMI" onclick="quizCalc(); return false;" class="btnHover" src="Submit.gif"> Is there anyway to ...

Conditional query from html controls

I want to build a web page where user can select data from different html controls and form a conditional query. For instance a == 2 and b == 4 and c == 6 or x == 0 The data for a, b, c and x comes from html controls and user is also able to delete different conditions in the query. Later I want to transform this query into j...