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 IamaSherpa 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. shalomgod

    Newbie: My database cgi works but gives me weird output

    #!/usr/bin/perl -w use CGI; use strict; use DBI; my $hello ="hello"; my $query = new CGI->new(); print $query->header("text/html"), $query->start_html(-title => "Database Test"), $query->p("Database Test"), my $db_handle =...
  2. shalomgod

    Using DLLs

    Sorry i was away so couldnt check the forums. Yes thats right. is it possible to decompile and get the source code?
  3. shalomgod

    Using DLLs

    Hi, I know how to create DLLs from a page of classes i created. However, how would i reverse that and create a generated page of classes from a DLL? I can use the command prompt and generate the classes with WSDL files but have no idea how to do it for DLLs. Any help would be much appreciated...
  4. shalomgod

    C# beginner. Really basic webapplication question

    thanks a lot guys. you really helped me out. im used to using java, but im kinda new to the whole C# webservices thing.
  5. shalomgod

    C# beginner. Really basic webapplication question

    hi below i have a snippet of a very simple piece of code i have used in a webapplication in C# private void btnFire_Click(object sender, System.EventArgs e) { test++; lblOne.Text =""+test; } when the button is clicked once. the number 1 shows in the label. after another click it...

Part and Inventory Search

Back
Top