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: iaresean
  • Content: Threads
  • Order by date
  1. iaresean

    Select rows with first row of a related table

    Hi All; Been a while since I have visited Tek-Tips, but I small SQL problem that has been bothering me. I need to select a set from a table and include the first row of a related set of data from another table. Does anyone know of an elegant statement that SQL Server 2005 may provide to solve...
  2. iaresean

    Restricting Internet downloads on my wireless network.

    Hi All; I have a small wireless network at home and I am trying to set a download cap on one of the machines in my network that is getting some download abuse. I have full access to the router and machines. Is there any tools out there (preferably free!) that could help me achieve this...
  3. iaresean

    Generic Search Stored Procedure

    Hi All; Does anyone know of (or know how to make) a generic search stored procedure. I really need a procedure that will allow me to pass it a table name along with a search string. Using the search string the stored procedure will search through any string type columns (varchar, nvarchar...
  4. iaresean

    Enterprise Library 3.0 released!

    This message is targeted at ca8msm, the person who introduced me to the Microsoft Patterns and Practices Enterprise Library. What a wonderful addition to my programming arsenal it has been! My coding has grown so much and I can now easily incorporate standards based enterprise ready solutions...
  5. iaresean

    Return group of words/characters around the found search term.

    Hi All; I have written a basic search stored procedure to search through content areas of my website contained within columns of type 'text'. What I am trying to do however is return to return a grouping of words around the matched text to display as a teaser on the frontend. So if one...
  6. iaresean

    Ultimate Image Manipulation

    Hi All; I am trying to build myself the perfect Image manipulation script based on my re-occurring requirements within my company. I have incorporated a few good image scripts (Including the free BetterImageProcessor). The last requirement I would like to satisfy for my script is this: I...
  7. iaresean

    Implementing a Currency Converter in my 2.0 site.

    Hi All; Does anyone have any good experience with implementing a free currency converter into their site? I am looking for a solution that preferably won't require me to have any off site links, and I would like the results to stay in my site. I have been to XE.COM and OANDA.COM, however...
  8. iaresean

    Replacing Nulls with a temp value.

    Hi All; I am trying to do date between select on a table that has startdate and enddate columns, however, a problem I am having is that some records have a 'NULL' enddate. These records signify 'never-ending' events. Is there any way for me to assign a value (like '2099/01/01') to these null...
  9. iaresean

    Anyone here used MyGeneration before?

    Hi All; I have been looking into MyGeneration: http://www.mygenerationsoftware.com/portal/default.aspx I have been developing something similar for myself in the little spare time that I get, but, coming across this I was thinking why regenerate the wheel when it's already there along with the...
  10. iaresean

    Insert additional html into every 4th item of a Repeater

    Hi All; I am using a repeater to display a listing of products. There are to be a maximum of 4 records per row. I would normally just use a div to hold each product with a float left assigned. Then the products would simply start on a new line based on the width of the holding div. However...
  11. iaresean

    WebRequest causing a SocketException

    Hello all; I have the following code to fetch an html template (via a webrequest) from an aspx page I have and then print the results of the fetch onto the calling page. // First get the newsletter template string sImageUrl = ""; NewsTemp oNewsTemp =...
  12. iaresean

    CSS files not loading properly in Development server

    Hi All; I have a wierd problem. I am dev'ing a site at the moment and when I browse to it via IIS it loads 100%. However, as soon as I want to perform debugging the css files do not load properly. Using my firefox dev plugins I checked the contents of the css files being loaded, and instead...
  13. iaresean

    Asp Net Temp Sessions not clearing

    Hi All; I have switched to using SQL Server 2000 to store my ASP.NET 1.1 sessions in a table. The thing is I have set sessions to expire after 30 minutes, but they are not doing so. The ASPStateTempSessions table has grown to over 50000 records and even after not browsing the site for over 48...
  14. iaresean

    Sharing session variables between classic ASP and ASP.NET 2.0

    Hi All; I have to extend (not rewrite) a classic asp site. Joy. Anyways, I am looking for a way in which I could share the session objects created within the classic asp site login script with the new ASP.NET 2.0 pages I plan to create. I have found numerous sites discussing the matter...
  15. iaresean

    Putting user email address all in the BCC field?

    Hi All; I have a basic newsletter app, written in ASP.NET 2.0, for a client. They have a static list of about 300 users that will recieve this newsletter over the course of the next 6 months. I have tried to make the newsletter app as simple as possible to suite their budget. My only concern...
  16. iaresean

    Dynamically creating controls and adding CommandEventHandler

    Hi All; I have created a few dynamic controls within the Page_Load event, like so: LinkButton lnkSet = new LinkButton(); lnkSet.ID = "lnkSet" + i.ToString(); lnkSet.Text = "Lot " + iStart + " - " + (iStart + iIncrement).ToString(); lnkSet.Command += new...
  17. iaresean

    Forms Authentication vs Session Objects problem

    Hi All; I have been having this problem for a while now and have merely been shrugging it off as not really too serious. For the backends of my site I use forms authentication to authenticate users before they can access the admin areas. When a user's login details are confirmed I instantiate...
  18. iaresean

    How to set the source for my mail as an aspx page.

    Hi All; Does anyone know how I can set the html source for a mail to be the output created by another one of my aspx pages? I remember being able to do this in classic asp, but can't find a way to do it in asp.net 2.0. Thank you for any and all help in this regard. Sean. [peace]
  19. iaresean

    Adding validation controls at run-time.

    Hey All; I have this little app that allows users to create games and then creates rules regarding the scores of the games. The rules that they can create allow them to specify that the score should be >, < or != to a specified integer value. Using these rules I would like to dynamically...
  20. iaresean

    Best way to output template HTML files.

    Hi All; I believe this is a mere quickie. :-) I am writing a basic newsletter template app. I allow users to select from a number of templates, enter their body text for the template and then preview the finished product. The template files are stored as .html files within my site root...

Part and Inventory Search

Back
Top