I have C# application that must store some information into MS SQL that
would be later sent to email with DB Mail.
Within C# application I have a class with several properties and I need to use it to generate email text. So what I would like is set up a template with placeholders for variables. I need to create text as HTML and plain t...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<style type="text/css">
html, body, form, table, tbody, tr {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
...
I want a div element, in a bottom of window. like a div in bottom page of old facebook.com. or like a chat div of initial facebook.com
...
We have a login page that is designed to have a 200px-high DIV vertically centered in the middle of the page. That is, it creates a 200 pixel blue band left edge to right edge (with form elements in it) that ideally should remain vertically centered in the viewport no matter how the browser window is resized.
This must be a CSS solutio...
I have rendered one of my controls into a string. I want to safely split the html string. I don't want any hanging html tags. I am working on a pagination control adapter.
How can I split my string, around less than a set number of chars) safely taking HTML into account?
...
I was viewing a Appcelerator Titanium Video Tutorial and I saw they used syntax like
<script type="text/php">
...
global $window, $document;
mysql_connect(...) or die $window->alert('...');
$document.getElementById('xxx');
...
</script>
so I have a few questions. Is it any difference if I use <?php ?>
without setting $window and $do...
how can i show html tags like this
html.actionlinlk("<b>bla bla</b>", null)
it dislay bla bla not bold bla bla-is it possible to show bold text?
...
In firefox 2 I was able to get the path using Browse - I use the path in our project to then write out files to that location. So now that browse does not get the path, does anyone know a way for a user to go to a directory and have the path returned via a web page so I could pass that along to the server for processing?
execCommand do...
I have an extjs component in its raw object type, for example:
var x = {
xtype: 'button',
text: 'Delete',
handler: whatever,
more:config,
more2: config2};
Now I want to add some listener to x. In my scenario I don't have access to the x object before or right after it is created. I just want to add an event handler ...
hi all,
i'm got a little html-wysiwyg editor in my cms and was wondering - is there a good script for tidying up html client-side? i'm mainly struggling with html that's pasted from winword.
maybe some regex would help already.
thanks in advance
...
i have select
<select id="parentId" name="parentId"><option value="1">ФАСАДНАЯ ШТУКАТУРКА<BR /><B>&#0171;STUC-O-FLEX&#0187;</B></option>
<option value="2">ФОНТАНЫ И САДОВАЯ МЕБЕЛЬ<BR /><B>&#0171;ALEXANDER ROSE&#0187;</B></option>
</select>
how can i make to show html items not t...
I notice on bad quality websites with ads a piece of the site will load then stall for seconds then load in the rest of the site. With AdBlock it loads very quicky. What is causing the stall? Is there a simply way around it?
...
Hi all;
<tr><TD><FONT size="2">My Value 1</FONT></TD></tr>
I need "My Value 1" Please Help Me. C# language
...
I am looking for a Java regex way of replacing multiple spaces with non-breaking spaces. Two or more whitespaces should be replaced with the same number of non-breaking spaces, but single whitespaces should NOT be replaced. This needs to work for any number of whitespaces. And the first characters could be 1 or more whitespaces.
So i...
Is there a way to disable the colored shadow generated by Webkit browsers when a form element receives focus? It's yellow in Chrome and blue in Safari, and gets in the way of any custom focus styles I try to implement.
...
I've always used single quotes when writing my HTML by hand. I work with a lot of rendered HTML which always uses double quotes. This allows me to determine if the HTML was written by hand or generated. Is this a good idea?
What is the difference between the two? I know they both work and are supported by all modern browsers but is ther...
I have just been involved in writing an application that does not use Doctype's on the jsp's. It has become increasingly difficult to fix html errors on different browsers because of this. I have done some research and understand what is going on and how to fix it, but that is not my question.
I have noticed that Amazon.com and Cat.co...
I am editing a vba program and want to code the vba to click on a button in a webpage. The html for the button is:
<input type=image src="/lihtml/test_button3.gif" align=left alt=File_Certificate_Go>
I imagine I would have to set a variable to getElementBy??? and then variable.click, but I can't figure out how exactly to get the eleme...
I am trying to make text inside a transparent div have no opacity, aka be completely black:
<div style="opacity:0.6;background:#3cc;">
<p style="background:#000;opacity:1">This text should be all black</p>
</div>
Is this possible to do with only CSS?
Thanks in advance
...
I have to send an email to several hundred users. Each will have a link tailored to the recipient so I need to generate the emails in script/code - I'm no Notes developer so I can't do this in Notes; I'm using C# and I'm pulling the list out of a SQL database.
There are some constraints:
The site that the link points to uses Integr...