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

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

    getting corrupt zip and gz files with HttpWebRequest &HttpWebResponse

    I have used this code other places with no problem. The site I'm trying to download from now is always coming back as corrupt. Is there something else I need to add to this code to successfully bring this file down to my machine? Here's my code. string strVars = ""; try {...
  2. DarwinIT

    Jquery calendar

    I'm workingin with some jquery code downloaded from Google. I'm trying to clone some functionality I don't understand from one project to another. This is some code that I'm putting in an aspx page. There is a css file associated - with ui- prefacing all of the statements for the datepicker...
  3. DarwinIT

    assigning drop down the text value

    I have hidden fields which contain data which can be imported into other visible text fields if a checkbox is checked. The click calls a javascript function which has this code. (asp.net page) f.<%=ddlCountry.ClientID%>.value = f.<%=hidCountry.ClientID%>.value...
  4. DarwinIT

    Sorting in SQL - I don't get it

    I got a request that I modify a million applications (maybe a slight exaggeration) to have them all sort a certain field so that all values which start with ( show up at the bottom. Of course they want the top of the list to be ascending. So I decided the best way to do this is replace the ()...
  5. DarwinIT

    xml fields parsed in numeric order

    I have a database driven project which allows the app to take data coming in from multiple sources and process it in the manner desired. This was column based so text files, excel worksheets, etc. work just fine. Now a new request has come down the pipeline and the vendor is sending me xml data...
  6. DarwinIT

    multiple asp.net elements on one line with label above.

    I have a mockup of a website to create. The mockup shows sometimes three fields in a line - with the label for the textbox/dropdown etc. above the input element. I am not allowed to use a table which would make this fairly painless. How do I format this so I can get multiple controls on the...
  7. DarwinIT

    ASP form alignment

    I have a mockup of a website to create. The mockup shows sometimes three fields in a line - with the label for the textbox/dropdown etc. above the input element. I am not allowed to use a table which would make this fairly painless. How do I format this so I can get multiple controls on the...
  8. DarwinIT

    What is the best way to validate a User Control

    I have found a calendar control that I'm inserting into my pages where dates need to be entered. What is the best way to validate that only valid dates are entered if the user types something. I'm wondering if I have to put the validator in the control module itself. Since sometimes the date...
  9. DarwinIT

    Centering a menu composed of a list

    I found a cool menu on a site and have tried to copy it. It uses lists with CSS to get drop down menu effects. Very cool but I can't get it to center. Here's the html, which is going into an ASP.net master page so all of my pages will have the menu. <div id=home_ad" class=""> <div...
  10. DarwinIT

    Turn on 32 bit mode in Visual Studio 2008 on Windows 7

    I ran into a problem instantiating a com object. One post I found involving this problem indicated that I could set the VS environment to compile in 32 bit mode. Is that true? If so, how? I don't suppose I can run in 32 bit mode so I can use the edit and continue functionality?
  11. DarwinIT

    passing a binary (encrypted ssn) to stored procedure

    I just changed an application which was using hard coded t-sql within it to write to a table, including a binary field. I swapped that out for a stored procedure. Now I've just discovered the SSN field is all zeros except for a one at the beginning. How do I get that value to correctly get...
  12. DarwinIT

    dynamic hyperlinks with master page

    I want to build a list of links dynamically from the database. I can add controls just fine but getting them to be cosmetically pleasing is a bit of a challenge. I had hardcoded them previously in table cells. Can I simulate that dynamically? If so, how???
  13. DarwinIT

    using sp_configure

    I found these statements somewhere on the internet. I have used them in order to be able to pull date from msdb..sp_help_job into a temporary table so I can determine what jobs are executing at the current time. I'm a little leery about doing this on a production server since by default this...
  14. DarwinIT

    using bulk insert with md5 data (binary)

    Can I use bulk insert with this kind of file? I found documentation on this using openrowset and tried it. It did not error out, but put all of the data into one record instead of creating one record for each line in the binary file.
  15. DarwinIT

    getting individual values from stored procedure results

    For example: say I run msdb..sp_help_job Can I write the contents of the resultset to a temp table so I can pull out the individual values within the sproc so I can do something based on the values?
  16. DarwinIT

    using SQL jobs - passing parameter etc.

    Can multiple instances of the same SQL agent job run concurrently? If so, is it possible to pass in a parameter in the sp_start_job routine so I could fire up the job multiple times with different results?
  17. DarwinIT

    Efficiency question on temp tables - delete vs drop

    I'm looping through a stored procedure - processing 1000 records at a time. I create a #temp table (using dynamic sql so I can't use a table variable from what I saw) When I process those 1000 records, I want to reload. It is more efficient to drop and recreate the table or issue a delete...
  18. DarwinIT

    Code to connect to a server employing SSH

    I have found a couple of free class libraries to do this. One in SharpSSH and one is Granados. I can't get either of them to work. Has anyone here used either of those - or something different that is free and does the same thing?
  19. DarwinIT

    XML parsing via recursionj

    I have to parse an XML file coming from a client. I had not worked with XML for a couple years and, as I expected, I ran into some difficulties. I searched high and low on the internet and found a plethora of articles. Some proved to be obsolete. Some just didn't work (dataset). Some I didn't...
  20. DarwinIT

    asp:content - configuring onload event

    I have a requirement to launch a secondary page as a pop-under when a certain page opens. That page uses a master page and asp:Content object - so there is no body tag to tweak in the aspx markup. The way I understand I need to do a pop-under is to launch a new window object via javascript...

Part and Inventory Search

Back
Top