-
outlook/exchange enterprise wide email signatures.
Date: 01/19/07
(IT Professionals) Keywords: software, html
Hi,
anyone has any software on how to syncronise html email signatures across 100 users..
users are completely clueless/can't be bothered to import an htm/template to do it themselves, I need a software so that I can manage at my end.
thanks
I've looked at Symprex Mail Signature Manager, but its US625 for a 50 user license, sounds pricey for a utility.. (its like the price of exchange itself..)
Source: http://community.livejournal.com/itprofessionals/50782.html
-
Sending a Memory Stream
Date: 01/19/07
(C Sharp) Keywords: html
I'm trying to send an email attachment "Data.txt" which in the end, is a tab-delimited file. I want to do this without creating a file on the server, so I'm reading the data in to a memory stream, and sending it across. The problem is that when the email arrives, the file itself is empty. Here is my sample code:
private void SendEmail()
{
try
{
string strEmailFrom = txtFrom.Text;
string strEmailT0 = txtTo.Text;
string strSubject = "Email test";
MemoryStream msData = new MemoryStream();
TextWriter twReport = new StreamWriter(msData);
for (int r = 0; r < 10; r++)
{
for (int c = 0; c < 10; c++)
{
string sValue = "r=" + r.ToString() + ";c=" + c.ToString();
twReport.Write(sValue);
twReport.Write("\t");
}
twReport.Write(System.Environment.NewLine);
}
string strBody = "Email Test Body";
twReport.Flush();
SendEmailDirect(strEmailFrom, strEmailT0, strSubject, strBody, msData, "ReportDataEmail.txt", true);
twReport.Close();
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
}
}
public static void SendEmailDirect(string strEmailFrom, string strEmailTo, string strSubject, string strBody, System.IO.Stream streamData, string strAttName, bool bIsHtml)
{
SmtpClient oSmtpClient = new SmtpClient(GetSMTPClient());
MailMessage mailMessage = new MailMessage();
mailMessage.IsBodyHtml = bIsHtml;
mailMessage.To.Add(strEmailTo);
mailMessage.From = new MailAddress(strEmailFrom);
mailMessage.Subject = strSubject;
mailMessage.Body = strBody;
System.Net.Mime.ContentType ct = new System.Net.Mime.ContentType();
ct.MediaType = System.Net.Mime.MediaTypeNames.Text.Plain;
ct.Name = strAttName;
Attachment attReport = new Attachment(streamData, ct);
mailMessage.Attachments.Add(attReport);
oSmtpClient.Send(mailMessage);
}
What am I doing wrong?
Source: http://community.livejournal.com/csharp/80618.html
-
rollover objects
Date: 01/20/07
(HTML Help) Keywords: browser, html
Hi everyone.
I wonder if someone can help me with my HTML-problem :)
I'm trying to create a rollover object (i work in Dreamweaver MX 2004, but use the code functions more than the graphic interface)... After i create it it works perfectly well in "preview", but in the real life, when i upload it, the only thing i can see in the browser is the white square with a small red cross in the corner instead of the object (although the link does work). Preview browser is identical to the one i ususally use, i tried it in different browsers, checked the uploaded images... all is fine.
Thanks in advance
Source: http://community.livejournal.com/htmlhelp/2384535.html
-
Antec shittiest power :D (power supply failure rate)
Date: 01/22/07
(Computer Geeks) Keywords: html
I always said antec was the suckest power, now somebody else noticed it as well.
http://www.behardware.com/news/8550/power-supply-failure-rate.html
Source: http://community.livejournal.com/computergeeks/1026045.html
-
css books
Date: 01/24/07
(WebDesign) Keywords: css, html
hey everyone
i'm going to be teaching a css class in the summer and i need to pick out a good beginner level book for the students. do you have any recommendations for books that helped you learn CSS? personally i learned everything online but supplemented with a couple books - specifically "html utopia: designing without tables using css". it's good, but i'm looking for more.
thanks!
Source: http://community.livejournal.com/webdesign/1212543.html
-
Table Problem?
Date: 01/24/07
(HTML Help) Keywords: html
I'm having a bit of a problem in viewing a certain page on my site in Firefox. For some reason the table extends beyond limit that I have the main 'content' div set at. This problem is only occurring in Firefox (looks great in IE) and only happens on that one page. I have tried to keep my HTML as consistent as possible throughout the entire site for easy maintenance but I have no idea why this is happening on this page. Any help would be appreciated.
Site: http://www.suga-shikao.net/live.html
Thank you!
Kay
Source: http://community.livejournal.com/htmlhelp/2385182.html
-
Javascript issue
Date: 01/24/07
(Javascript Community) Keywords: browser, html, java
Hello I am having what I think is a cross browser Javascript issue. I have a class that moves a page element around. Its not working in IE and I am not sure why. Any input is welcome. I am new to Javascript.
I get no errors in Firefox but I get an error from IE that says "Error: Object does'nt support this property or method".
I tested various things like "getElementById()" and "setInterval" in a test script in IE and they worked. I cant tell what property or method the error is referring to even when debugging with Visual Studio.
JS code
HTML Code
Source: http://community.livejournal.com/javascript/125878.html
-
Looking for a Tablet PC
Date: 01/24/07
(Computer Geeks) Keywords: html
I'm looking to buy a new Tablet PC for my dad. Thing is I don't know a great deal about these PCs. Unfortunately these are rather expensive and range greatly in terms of costs. It looks like the best overall one is the new X60 Lenovo (http://www.pc.ibm.com/us/notebooks/thinkpad/x-series/tablet/sitelet.html?ipromoID=hpc00018)
. Thing is this is going to be upwards of $2,000, and I don't see many offers for special financing either. I was looking at a few Gateways, but those got VERY mixed reviews.. especially that the stylus and the support isn't that good, and with my dad who has the patience of a spoiled 4 year old, and my lesser computer knowledge with Tablets is not going to help either, so if spending more money will shut him up for the long run, then so be it. Anyone have any experience or opinions on this? Thanks.
Source: http://community.livejournal.com/computergeeks/1028337.html
-
unknown update box
Date: 01/27/07
(Computer Help) Keywords: html, microsoft
as posted to computerhelp:
my parents computer has started getting this dialog box constantly:
whether you hit yes or no, nothing happends,, except it reappearing after a random ammount of time.
i have run scans with avg, adaware, and spybot, and nothing they find appears related or affects it.
i had the task manager tell me what process created the box, and it points me to explorer.exe. and also if i end task the box, i get this:
makes no sence for it to be from microsoft since they have that entire automatic updating system.. and there was no priority updates anyway other than ie7.
anyone know what this might be and how to get rid of it?
(and something happened to lj's html formatting, sorry if this is hard to read)
Source: http://community.livejournal.com/computer_help/740096.html
-
Problems with config.php for a script.
Date: 01/28/07
(PHP Community) Keywords: php, html
Okay, well this is my first time posting to this community, I've little experience with php so I'm working off of pre made scripts. I rrecieved this problem:
Warning: main(/home2/yukapok/data/lib/cache/lib.php) [function.main]: failed to open stream: No such file or directory in /home2/yukapok/public_html/candy/includes.php on line 25
Fatal error: main() [function.require]: Failed opening required '/home2/yukapok/data/lib/cache/lib.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home2/yukapok/public_html/candy/includes.php on line 25
So, line 25 is: require_once($CFG->dirroot.'lib/cache/lib.php');
Ask for more information and I'll edit it in. Thanks, I hope I get this figured out...
Source: http://community.livejournal.com/php/534236.html
-
Helps!
Date: 01/29/07
(WebDesign) Keywords: css, html
probably a simple css mistake...but i cant figure out why my contentcontainer div isnt extending as far as it should. Hence the white box in the lower left..help?
http://2amstudios.net/test/portfolio.html
http://2amstudios.net/test/2am.css
Source: http://community.livejournal.com/webdesign/1214085.html
-
phantom line break thanks to blogger?
Date: 01/29/07
(HTML Help) Keywords: browser, html, web
okay, so I'm not that well versed in HTML, but I know enough to make a basic website, which I have been working on for a while now and am finally just finishing up.
I want to have a weblog on the first page so I set up an account with Blogger. I think everything is okay, except in certain browsers Blogger puts in an extra line break in my menu header and I don't know how to fix it!
this is what I mean:
Blog page
versus
no weird line break!
I am building the page on a Mac using Firefox. when I look at it with Safari there is no break on the blog page. when I look at it with a PC using Firefox there is.
I tried to put that teal-green color as the background of the table row, but it didn't seem to work.
any advice? thank you so much!
(also, if you see anything else error-wise, let me know... and let me know if this post is not allowed. it has nothing to do with LJ layouts which are mentioned on the main page a few times. I am kind of desperate.)
Source: http://community.livejournal.com/htmlhelp/2386123.html
-
New website launched; NEED YOUR ASSISTANCE
Date: 02/01/07
(WebDesign) Keywords: browser, css, html, web
Just a quick update here.
I just re-launched Diana and My Wedding Announcement webpage, and I am having difficulties perfecting the CSS and HTML and how the page is viewed in different browsers. IE7 works great, Firefox 2 does NOT understand half the crap happenning and I have yet to try Opera or any other alternative browser.
Please take a few minutes to click around on the site, if you have access to different browsers, use them all and then comment here with any formatting issues.
Also, if anyone out there knows ANYTHING about CSS or HTML formatting for universal viewing, please, PLEASE contact me and give me hand. I would really appreciate it.
http://www.seikatsustories.com
Source: http://community.livejournal.com/webdesign/1215540.html
-
best php practice?
Date: 02/04/07
(PHP Community) Keywords: php, html
I have a question about the the 'best' (most efficient? cleanest? elegant?) way to process form data for a page. I don't know if I should process the data, update the DB, etc at the top of the page I'm displaying, or if I should handle it in a PHP file that then redirects to a page that displays HTML.
Should I:
index.php
// Some code here
include 'formProcessingStuff.php';
// Lots of code
include 'showBody.php';
// Lots more code
?>
or
formsubmit.php
//Page that processes the form
// Tons of code that processes and validates info and updates DB
// Now we want to give the user a page to see what he just did
header('Location: displayContentPage.php');
?>
displayContentPage.php
// Code that shows the body of the page
?>
The latter seems much cleaner and easier to see and understand and code. More encapulation to make updates easier down the line. But is this a Good Practice? Is it acceptable? What problems/drawbacks might I run into?
Source: http://community.livejournal.com/php/537381.html
-
A plea, a proposition
Date: 02/05/07
(WebDesign) Keywords: php, css, html, hosting
I need help. A lot of help.
I have been designing (using the term very loosely) for nearly a decade now but it seems that I can't wrap my head around more than just basic HTML and I was wondering if anyone would be interested in tutoring and helping me learn effective CSS and PHP (I've been using CSS for years but mostly just eyeballing things, copying and pasting, trial and error; a lot of my code is messy, redundant, or useless and I can't seem to get the hang of styling outside of iframes). I know there are many, many layout journals and sites but not many of them offer personal help. In return I can offer you hosting on an amazing server, or I could even pay you if we can't work anything else out. I have a lot of ideas for designs and sites, I just can't seem to get them into code.
Source: http://community.livejournal.com/webdesign/1217227.html
-
Probably off-topic but...
Date: 02/05/07
(PHP Community) Keywords: php, programming, css, html, xml, asp, sql, java, web, google
As I look for alternative employment I see a lot of wanted ads asking for a web designer who are proficient in several web-programming languages (they usually specify PHP/ASP/CGI-Perl), the use of several different databasing formats (Access, SQL of some sort, Oracle) - proficient in several different forms of design (Photoshop, Flash, Illustrator, FreeHand, Quark, etc) as well as being a master of JavaScript, XHTML, XML, DHTML, CSS and any other acronym they seem to have found on google.
To me this sounds like they are asking for a web-design team wrapped into one person. Am I crazy; or are they?
Source: http://community.livejournal.com/php/538219.html
-
Freelance website development
Date: 02/06/07
(Computer Geeks) Keywords: php, html, web
Hello all,
Just out of curiosity, how would one go about getting into a bit of freelance web development? What skills would they need? How would they advertise themselves? etc.
you see, I've been a student for a while now, and I've come across two major trends; A lot of free time, and not a lot of money, so I figured I could kill two birds with one stone. I'm pretty damn good with html and php also (all self taught though, not an official qualification in sight).
So, where would I go from here?
Any help would be greatly appreciated
Sam
Source: http://community.livejournal.com/computergeeks/1034089.html
-
mySQL, BLOBs and image streams
Date: 02/09/07
(PHP Community) Keywords: browser, html, database, java
I was wondering if anyone had thought of a useful way to get images out of BLOB fields in a database table and send them to a rendered HTML page inline. This whole calling another script via a URI that fetches the picture as a served "page" via a second request seems very redundant.
I've seen the client side encoded binary tricks through javascript, and they are clever but rely on the client's browser settings too much to be comfortable. The fact that IE refuses to implement the data: URI is a pain in the royal parts. An idea I had was to save the results as temp files and serve them that way, but again, terribly redundant - not to mention hard on the server.
So have any bright sparks come up an elegant and W3C friendly way to pull an image binary from a BLOB and include it in an tag?
(I'm aware of the database overhead with many BLOBs - this is just an exercise in extreme cleverness)
Source: http://community.livejournal.com/php/539857.html
-
Anyone Up?
Date: 02/10/07
(WebDesign) Keywords: html, web
Would anyone mind if I sent them an email to test whether some code I wrote is showing up as HTML gobbledy gook or actual web stuff? I'd really appreciate it. If so respond with your email addy. Thanks!
Source: http://community.livejournal.com/webdesign/1219713.html
-
Help with phpbb theme
Date: 02/15/07
(WebDesign) Keywords: php, templates, css, html
Is there any chance I could enlist someone's aid in putting together a phpbb style for a new forum I'm doing?
I'd like a dark, gritty, industrial feel to it.
I'd also really like the templates to be fully xhtml/css compliant, but that can be split into two tasks. I can attempt that myself, but I need to brush up on my XHTML and CSS skills. Or if you're good with XHTML/CSS but not necessarily with graphics, maybe you can help me in that regard.
Here are a couple examples of themes I like to give you an idea. The top example is probably the best, and the theme I normally use is Zarron's Charcoal3Steel.
design - http://osc.template-help.com/forum_12926/
Charcoal3Steel - http://zarron.com/
side tabs - http://osc.template-help.com/forum_12882/
dance - http://osc.template-help.com/forum_11934/
Ambience - http://www.extremepixels.net/phpbb/index.php?s=35
Tren_z - http://www.extremepixels.net/phpbb/index.php?s=58
mechanical_creator - http://osc2.template-help.com:8081/forum_13468/
I like how some of these break up the layout with some white space, putting navigation tabs on the left, and utilize non-standard lines to break up the usual boxy layout of phpbb. Sometimes it is just the same blocky layout, but the graphics have nifty tabs and curves to dress it up.
The artist who helps me would obviously still own the work and would decide distribution rights of it as they wish.
Thanks for your time!
Source: http://community.livejournal.com/webdesign/1222052.html