Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ca8msm
  • Content: Threads
  • Order by date
  1. ca8msm

    Copy Database from Linux to Windows

    Hi, I've been asked to help out in attempting to retrieve some data from a PostgreSQL server that was based in a linux environment. All I've been told is that there is a problem with booting up the machine so that it can't even get past the boot up screen. What I would like to to (if possible)...
  2. ca8msm

    Allowing custom extensions

    We have a few webform based applications that allow other teams of developers to extend the core application and add their own modules into the system. This is relatively straight-forward and can be done decorating their classes with a extension tag that we then use to load their modules e.g...
  3. ca8msm

    Controller Functions

    In what scenarios would you have a controller function that doesn't have an associated View? For example, it's possible in a controller to return anything (as opposed to what I would class as the default - an ActionResult for a View) so you could have: Function GetDate() As DateTime...
  4. ca8msm

    Development Tools, Libraries and Frameworks

    For a typical project, what are the different development tools, libraries and frameworks that you use? Here's mine: Tools Microsoft Visio SQL Server Management Studio SQL Profiler Visual Studio Codesmith Firefox - Firebug and the Web Developer Toolbar Libraries Microsoft Enterprise Library...
  5. ca8msm

    Invisible Windows 7 Machine!

    Hi, I've got a strange issue with my windows 7 machine at home that has been bugging me for weeks, but I really need to get it sorted now so I'll detail as much as I can and hopefully someone can spot what might might be wrong. I have a wireless router connected to the internet and 3 devices...
  6. ca8msm

    ORM Article

    Whilst maybe not directly related to ASP.NET, it's probably something we all have to use as part of our development process and Jeremiah Peschka has just written an interesting article that I found useful and that you may want to read...
  7. ca8msm

    Vertical Text

    Is there a cross browser compatible method of achieving vertical text in CSS (i.e. not just the IE {writing-mode: tb-rl;filter: flipv fliph;} method)? Or should I take the option of an image with associated alt attribute? ------------------------------------------------------- Mark...
  8. ca8msm

    Enterprise Library 4.0 – May 2008

    A new version of the Enterprise Library (for .NET Framework 3.5 and Visual Studio 2008) has been released: http://msdn.microsoft.com/en-us/library/cc512464.aspx ------------------------------------------------------- Mark, http://aspnetlibrary.com http://mdssolutions.co.uk - Delivering...
  9. ca8msm

    Target iframe elements

    I have an iframe on my page: <iframe id="myframe" name="myframe" src="http://externalsite.com/page.html "/> And I want to target a select element in it's page and set it's selected value (the name attribute has been added as that was one of the suggestions given to be able to access the...
  10. ca8msm

    Tabs

    I'm just wondering what methods people use to create "tabs" in their sites? I've just been testing one I found in Google (http://www.phrogz.net/JS/Tabtastic/index.html) and wondered if there's any other pre-built one's that you would recommend? Or, do you create your own, or even use a...
  11. ca8msm

    Porting emails

    I have a website setup with a hosting company, and I'm soon going to be moving to a new host. With my new host, I can register my domain (this will remain the same), and create the same email accounts that I have with my old host. However, I want to "port" the emails over from the current host...
  12. ca8msm

    Script Database

    I've got a locally based SQL Server 2005 Express database that I need to upload to a web host. The web host doesn't support attaching an .mdf or restoring from a .bak file (well, they do, but I have to create a support ticket and I've got lots of instances of this database to attach and this may...
  13. ca8msm

    CSS Poster

    Here's a rather interesting way of documenting a css file: http://www.html-kit.com/poster/css ------------------------------------------------------- Mark, http://aspnetlibrary.com http://mdssolutions.co.uk - Delivering professional ASP.NET solutions http://weblogs.asp.net/marksmith
  14. ca8msm

    CSS Templates

    Does anyone know of any websites which offer css based templates (free would be great, but I don't mind if there is a cost associated) based on the same HTML structure? I've seen lots of sites that offer templates, but most of the templates are based on a different structure. What I really need...
  15. ca8msm

    Highlight relevant item in another list

    Say for example that I've got: <ol id="listone"> <li id="one_one">1</li> <li id="one_two">2</li> </ol> <ol id="listtwo"> <li id="two_one">1</li> <li id="two_one">2</li> </ol> What I want to happen is that when I mouse over the first or second item in...
  16. ca8msm

    Ordered List in IE7

    Why does IE7 revert each list item back to "1" when a height is added to the li element? Firefox still numbers them #1-5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>...
  17. ca8msm

    IE7 inline elements

    Why doesn't IE7 wrap the inline elements down to the next line, and what would be a suggested workaround (maybe floating instead)? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type"...
  18. ca8msm

    Free SQL Server Tools

    Free SQL Server tools that might make your life a little easier ------------------------------------------------------- Mark, http://aspnetlibrary.com http://mdssolutions.co.uk - Delivering professional ASP.NET solutions http://weblogs.asp.net/marksmith
  19. ca8msm

    3 column layout - center width

    How do I make the center column stretch to the full available width, without forcing the left and right columns underneath or above the centered column? Bear in mind this is a cut down example and in the real site: 1) The container width could either be a percentage or a fixed width. 2) Only...
  20. ca8msm

    IE7 z-index

    Can anyone spot why my z-index isn't working as I expect it to on IE7? The functionality which is want is working in Firefox and Opera where if you hover over a person's image, you get a CSS div tag pop up to display some details. This overlaps the next image correctly (in front of it), but in...

Part and Inventory Search

Back
Top