5,277 Posted Topics

Member Avatar for gahhon

How are you including the images? As `<img>` elements? If so, some email browsers will block that content unless the user clicks on allow. You can embed the images in your email using the alternateviews property. http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.alternateviews.aspx I dont have sample code to share with you as it isnt handy …

Member Avatar for gahhon
0
133
Member Avatar for laura301019

In your title, you mention Visual Studio.. Are you developing PHP using Microsoft Visual Studio? There's no rule that says you cant, but Visual Studio is probably not the best IDE for PHP. So phpMyAdmin is used to manage your DB, but can you clarify...is your DB at the universitie's …

Member Avatar for laura301019
0
273
Member Avatar for Techno22
Member Avatar for kurianjoseph

I believe that for anyone that is serious about any area of interest, it is important to learn that area from the ground up, including becoming intimately familiar with the building blocks of that area. It doesnt matter if we are talking about web development, math, or any other product. …

Member Avatar for deceptikon
0
179
Member Avatar for grafic.web

I'd recommend that you take each concept seperately with regard to creating threads. Each of those items may result in tons of content and alot of follow up questions. If all of those questions are discussed in one thread, it will be difficult to follow. I'll add some info with …

Member Avatar for grafic.web
0
371
Member Avatar for davy_yg

There's a few ways to create that "gap". You can also apply padding on the `<li>` elements. For example..notice `padding-right: 10px` on the `ul#nav li` selector below. <!DOCTYPE html> <html> <head> <title>Demo</title> <style> ul#nav { list-style:none; position:relative } ul#nav li { display:inline; float:left; position:relative; padding-right: 10px; } ul#nav a { …

Member Avatar for Nmalik1
0
119
Member Avatar for Payal Gupta
Member Avatar for yaragalla_mural

As far as I know, you cannot style the options elements listed within the `<select>` element except for the `background-color` and `color` properties. All other styling is applied to the `<select>` element.

Member Avatar for JorgeM
0
320
Member Avatar for vikasgiri

You can try.. window.location.href = window.location.href If you use window.location.reload(), this will reload the current page including POST data so that may be something you need to consider. If you can be a bit more descriptive in your posts, you are more likely to get better guidance in the answers …

Member Avatar for JorgeM
0
100
Member Avatar for MWEB

As mentioned, either provide the relevant code (please don't post hundreds of line of non revalent code), a link to the site, or a link to your code on jsfiddle.

Member Avatar for designershiv
0
178
Member Avatar for designershiv

So, as you can see we are a bit confused as to this approach. If you can provide clarification on what you are trying to implement, better guidance can be provided. If you are simply trying to create a box that acts like a link, try this approach. Simply use …

Member Avatar for paulkd
0
318
Member Avatar for shlokka

Yes truncating the table will work, at least I know for a fact that it works in MSSQL. Don't confuse truncate with drop though... :-)

Member Avatar for JorgeM
0
97
Member Avatar for pritaeas

Ive noticed the same behavior although it seems to come and go. As of 7:30 am Eastern, it seems a little bit better. Sometimes in a load balanced environment, if there is a problem that the load balancer(s) are unable to detect, they will continue to share the load across …

Member Avatar for Ancient Dragon
0
346
Member Avatar for Benjamin_5

If you add the HTML5 doctype then technically it's an HTML5 page. You don't have to add the newer elements introduced in HTML5. Even if you did add HTML5 elements, the browsers are generally going to ignore elements that they don't understand. Web browsers are programmed to do the best …

Member Avatar for NardCake
0
126
Member Avatar for Ann Krizette
Member Avatar for SERPWarrior
Member Avatar for Samerases

You've put yourself in a corner with regard to a migration plan. According to your description, you now have two Active Directory instances, both with the same domain name and now you have Exchange 2003 running on server(s) with the same name, but simply on different IP ranges. So, the …

Member Avatar for Samerases
0
152
Member Avatar for 203428
Member Avatar for castajiz_2

It's more helpful to see your relavent code either on the live site, jsfiddle, or posted here so we can see the behavior.

Member Avatar for JorgeM
0
134
Member Avatar for gahhon

1) So can you clarify if you want to push the footer to the bottom of the page, regardless if there is enough content to fill the page? This is also known as a "sticky" footer. This is useful when you want the footer to be placed at the end …

Member Avatar for gahhon
0
267
Member Avatar for weeraa

If you can provide the relevant HTML that is generated, we can take a look at what style can be applied to address the issue. Right click view source-only the relevant HTML is needed.

Member Avatar for JorgeM
0
966
Member Avatar for developer707

So, aside from using `<img />` elements within your HTML document, you could also "embed" an image via CSS using the `background-image` property assigned to an element on the page. For example... <!DOCTYPE html> <html> <head> <title>Demo</title> <style> body { background-image:url('images/grid.png') } </style> </head> <body> </body> </html> **[edit]** maybe i …

Member Avatar for JorgeM
0
234
Member Avatar for GEORGE V

I followed the steps listed in this MS Article using Excel 2013, and it worked fine. [How to use conditional formatting to shade every other row in Excel](http://support.microsoft.com/kb/268568) ![70826ea55fbec132dd2d66042f98c373](/attachments/large/3/70826ea55fbec132dd2d66042f98c373.PNG "70826ea55fbec132dd2d66042f98c373")

Member Avatar for JorgeM
0
238
Member Avatar for gahhon

Is the SMTP host you are trying to connect to listening on port 25? Check their documentation for the correct settings.

Member Avatar for gahhon
0
235
Member Avatar for kshahnazari

Try something like this... <script> $.ajax({ dataType: "json", url: "getJson.php", success: function (data) { for (var index = 0; index < data.length; index++) { console.log(data[index]); } } }); </script> You can see the results using your browser's dev tools, console. ![1322d0546996dd704f1826485e46c7ab](/attachments/large/3/1322d0546996dd704f1826485e46c7ab.PNG "1322d0546996dd704f1826485e46c7ab")

Member Avatar for Bachu
0
355
Member Avatar for Kleon

Ajax is easy to work with natively in JavaScript, but even eaiser if you leverage the jQuery library. Since you are new to JavaScript, I can assume you haven't been exposed to jQuery yet. What you would do is create a JavaScript function that takes care of the Ajax request. …

Member Avatar for JorgeM
0
154
Member Avatar for vivosmith

+1 for a great response by Michael. I'll also say that you cannot look at a single class to determine what you should do with regard to a a degree and/or career choice. You are not going to be great in every class or every component within a particular field …

Member Avatar for mmcdonald
0
286
Member Avatar for shashidhargm

>So i made DVD-drive as my 1st boot up option. If you mean in your BIOS, all this does is boot from media in your DVD drive if the media is in fact "bootable" such as an OS disk. Before you proceed with creating a mutli-boot system, I would highly …

Member Avatar for shashidhargm
0
100
Member Avatar for Michaelabc

Sounds like a file association issue. Check you Programs and Features applet in Control Panel. It could be that some Office 2010 applet is installed in your computer and when you click on it, its executing this program instead of launching Access 2007.

Member Avatar for Michaelabc
0
153
Member Avatar for kat101
Member Avatar for jcgldr
Member Avatar for gogs85

One appropriate method is to ingest an RSS feed that the website has provided. The purpose of the feed is to syndicate their articles. If the website does not have some sort of public publication process, screen scraping their site is another option, but its generally frowned upon because you …

Member Avatar for JorgeM
0
97
Member Avatar for Austinlanger

If you want some help with regard to making your website load faster, some of the items listed below are correct. Take a look at this site which allows you to run tests against it and it will grade your site and provide you with detailed recommendations. http://www.webpagetest.org/

Member Avatar for Amol555
0
166
Member Avatar for davy_yg
Re: IIS

If you will be running a windows box, you will need to install PHP. IF you plan on hosting with a provider that has Windows Server, they usually have both asp.net and PHP loaded so you can do either, both..

Member Avatar for JorgeM
0
83
Member Avatar for praveen1993
Member Avatar for peteranjos
Member Avatar for dyea.marcello

For this last error, it's pretty self explanatory. Are you sure you are supplying the correct credentials to connect to the target DB?

Member Avatar for diafol
0
508
Member Avatar for YakuzaJevin

The html `<center>` element is deprecated and should be avoided. For presentational formatting, its best to use CSS properties instead. One option to center the menu is to assign a width to the <ul> element with a left/right margin set to auto. #sddm { width: 705px; margin: 0 auto; padding: …

Member Avatar for JorgeM
0
207
Member Avatar for Szabi Zsoldos
Member Avatar for Szabi Zsoldos
0
229
Member Avatar for TimiDani

What you do mean by link and iframe? I dont see the connection. It would be more helpful if you can share some of the code you are talking about so we can see what you are dealing with. For some elements..even though they are not natively "clickable", you can …

Member Avatar for JorgeM
0
134
Member Avatar for laura301019

> I was using visual studio to code and sql server for stored procs, is this the best way for me to continue? If you are using visual studio, a natural choice for the db is MS SQL server mainly because of the integration. there's nothing you need to do …

Member Avatar for IIM
0
256
Member Avatar for grafic.web

The easiest way is to integrate a gridview control and just attach that gridview to a data source all using the design view in Visual Studio. Another option is to use a repeater control. This allows more flexibility on exactly what the output is going to look like. >and open …

Member Avatar for JorgeM
0
335
Member Avatar for grafic.web

What is the error message that you received? Try this Microsoft tutorial, step by step... [How To Implement Forms-Based Authentication in Your ASP.NET Application by Using C#.NET](http://support.microsoft.com/kb/301240)

Member Avatar for grafic.web
0
222
Member Avatar for grafic.web

if you have multiple textboxes, you may want to consider using one of the web controls instead. It is going to save you a lot of work. For example, its common on page one to use a gridview. Then on page2, you can use a "detailsview" control. This control can …

Member Avatar for grafic.web
0
243
Member Avatar for Van1234
Member Avatar for Ngrud
Member Avatar for </scorpion>
Member Avatar for <M/>

>Another question of curiosity, how do i set up my if statement so that if a number (for example) has the number 5 in it, put a asterisk next to it? I was typing this code up, but in the mean time it looks like this thread received more responses …

Member Avatar for <M/>
0
721
Member Avatar for jmphotog1

I could be mistaken but it shouldnt matter. SATA and eSATA are the same except eSATA designates that you are taking the SATA connection externally, so typically one would use an eSATA cable which is shielded.

Member Avatar for rubberman
0
222
Member Avatar for redean

One thing that should be considered is the life cycle of the product. Microsoft published this article in which they indicate that Visual Basic 6 will be supported during the life of Windows 8. What happens after that? While this means there will be several years to go, for someone …

Member Avatar for Ancient Dragon
0
1K

The End.