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 strongm 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: *

  1. Tinkerers

    Free asp.net controls

    There must be a site out there someplace that has user created controls? Look at PHP and Perl modules, there are loads and loads of them, all free.
  2. Tinkerers

    Free asp.net controls

    Hi, Where can I find some good asp.net FREE controls? Many of the sites out there insinuate their controls are free, then upon drilling in, we find they are not free :-( Thanks, Paul
  3. Tinkerers

    Automate Application Name When New Folder Created

    Hi, In ASP.NET if a user creates a new web folder in inetpub\wwwroot, he needs to tell me so I can go into IIS and click the button to create the application name. That application name is needed so that the web site can do NT authentication. How can I automate this so that I no longer need to...
  4. Tinkerers

    Code Snippets

    Hi, I'm looking for some code snippets around connecting to sql server db's. Data Readers, grids and the whole nine yards would be nice. I've poked around the internet and have not been able to find a good collection of code snippets around this. Somewhere there must exist a good cheat sheet...
  5. Tinkerers

    Will classic asp become obsolete?

    Let me ask this, I wonder how long Microsoft IIS will support classic asp? Hmmm, I wonder what other web server systems support classic asp? I don't think Apache even supports it.
  6. Tinkerers

    Will classic asp become obsolete?

    What do you guys think, will classic asp become obsolete? I wonder how long the browsers will continue to support it? I hate .net and am a bit worried about developing new web sites using classic asp (though I would prefer to continue using it). Maybe I should move to php? Thoughts? Thanks, Paul
  7. Tinkerers

    Map of Towns within each state

    Hi, I'm a programmer looking for a way to display a map image of a state, such as Massachusetts on a web site. The State should display each town and it's boundaries and allow me the ability to background color each town programtetically. In other words, I may wish to color the town of...
  8. Tinkerers

    Is Text File Complete and Available

    Guess there's not an easy way to determine if the file is complete. Some of these files are over 1 GB in length and take a long time to transfer. It was a hassle just convincing the sender to place the files in our FTP site. I don't think I'll be able to talk them into setting up anything...
  9. Tinkerers

    Is Text File Complete and Available

    Hi, I have an FTP site where a remote host puts giant text files every so often. I need to programetically determine if the file exists and if the remote copy process has completed so I can then run some code to retrieve the file. Retrieiving the file is no problem and determining if the file...
  10. Tinkerers

    Credentials / Permissions NT Login Name

    The only way I can get the proper permissions to execute the SSIS package is to use my own Network login, such as domain\Paul. A windows account I could create doesn't provide me the necessary read/write permissions across different servers. I guess I was hoping to somehow set up my NT login...
  11. Tinkerers

    Credentials / Permissions NT Login Name

    Hi, I fought with the permissions in SQL Server 2005 to get the permissions correct to execute an SSIS package. Eventually I ended up creating a credential with my NT login name, like domain\Paul. I also had to type in and save my NT login password. All is working perfectly now. However, when...
  12. Tinkerers

    Insert into openquery( MySql)

    Well I tried casting and converting to every possible combination and still no luck. We solved the problem by using the MySql.exe app and passing the sql insert parameters to it on the command line. Worked great and very fast too.
  13. Tinkerers

    Insert into openquery( MySql)

    Hi, I've been struggling all day attempting to perform a simple insert from SQL Server 2005 to MySql. I can perform the insert and it completes succesfully in query analyzer, but here's the problem: The one field in the MySql db that is a TEXT data type never populates. Here's the query...
  14. Tinkerers

    Command Reference

    Hi, I'm looking for a good source that may have a complete set of command references for asp.net VB. I keep all my code snippets stored in an app called "Action Outline". This app has a tree and brach interface like windows explorer. I'm trying to document all the different commands and...
  15. Tinkerers

    Optimize this Update Sql

    I rewrote the query so it does an insert rather than an update. MUCH faster now. Updates are very slow.
  16. Tinkerers

    Optimize this Update Sql

    The example I provided is a portion of the query. Other fields are utilized from the other joined tables. I'm trying the query like below, now. Populating the #TempPB table took 6 minutes. The index portion took 10 seconds. The update has been running for almost 15 minutes and is not complete...
  17. Tinkerers

    Optimize this Update Sql

    Hi, I have this update routine that takes 1 1/2 hours to run in Sql Server 2000. update W set W.IP=X.IP from wow.dbo.CSG_SBB_HSE_HSL_ACP_EQP_BASE W inner join ( SELECT A.Mac,A.Ip FROM cdvsupport.dbo.tb_CmtsPollCm A INNER JOIN cdvsupport.dbo.tb_CmtsPollIfc B ON A.CmtsKey = B.CmtsKey AND...
  18. Tinkerers

    Refer to Control with variable

    Hi, This should be an easy question for someone who understands Javascript. I have the following code: <form name="form2"> <input type='checkbox' name='chk1' onclick="fct('1','Paul');"> <input type='text' name='Tech'"> </form> <script> function fct(cnt,user) { if...
  19. Tinkerers

    Majority of Column

    Thankyou to all who went after this brain teaser. Wow, for such a simple thing, it turned into a quite complex query. I did use the version from SQLSister, as it was the shortest and easiest:-). SELECT ColumnA, ColumnB, COUNT(*) AS NbrOfRows into #temp FROM table GROUP BY ColumnA, ColumnB...
  20. Tinkerers

    Majority of Column

    Hi, I have a table like this: ColumnA | ColumnB C 1 C 1 C 1 C 1 C 3 C 2 D 6 D 6 D 6 D 5 I need to write a query that will show only the values that have the majority of the rows...

Part and Inventory Search

Back
Top