Search

You searched for the word(s): userid:751914

Matching Posts

  • Re: Question on downloads

    You get absolutely no benefit.
    Posted to Getting Started (Forum) by bbudz on 2/20/2009
  • Re: access USB HID device with asp.net web application

    I don't believe you can do it with ASP since all the code runs on the server, not the client. The only code that runs on the client would be any JavaScript or some other client script but I think it would be a HUGE security flaw if web pages had access to the machine, such as to drives or files.
    Posted to Getting Started (Forum) by bbudz on 2/20/2009
  • Re: How to sort a List<myClass>

    As SGWellens said, you need to implement Icomparable in your class. The Icomparable interface forces to you overload the method CompareTo() which handles all the logic for sorting objects. public class MyClass : Icomparable { // constructors, methods, properties, etc... public int CompareTo(object other) { // logic for comparing return intValue; } } If the current object (this) is less than the object other, return -1. If the current object is equal to the object other, return 0. If the current object
    Posted to Getting Started (Forum) by bbudz on 12/5/2008
  • Re: WebService on Localhost Not Working

    The error message i get is that the application timed out, when i use the sample page or when i just navigate to it. The batch process only takes about 5 full seconds to finish... I'm not too good with IIS and I usually just use the build in development server instead but I know that the ASP.NET version is correct. How do i know it it has it's own virtual directory? Right now, if I expand all the nodes i see in IIS it looks like: Internet Information Services | +----- Computer Name (local
    Posted to Getting Started (Forum) by bbudz on 6/20/2008
  • WebService on Localhost Not Working

    Hey guys (and gals), I made a service that calls an external batch process and returns the process's exit code. I tested in Visual Studio 2005 and it and it works fine. I published it to my localhost (IIS 5) and it doesn't want to work. I made sample page that uses it and no success either. I'm assuming that I have to configure IIS somehow but have no idea how. Any ideas? Thanks, Bart
    Posted to Getting Started (Forum) by bbudz on 6/20/2008
  • Re: Personal Web Site Tutorials

    Visual studio comes with a built in Personal Web Starter Kit web site that you can build. Go to Create New Web Page and one of the options should Personal Web Starter Kit. The project loads and it's almost ready. You can build it as soon as it loads to see what it offers. There are also tutorials on how to modify it: part 1: http://msdn.microsoft.com/en-us/library/ms972963.aspx part 2: http://msdn.microsoft.com/en-us/library/aa479336.aspx You can also go to http://www.asp.net/downloads/starter
    Posted to Getting Started (Forum) by bbudz on 6/17/2008
  • Re: just added to the above question if any bodies know this problem

    Check out http://www.asp.net/learn/videos/ video 11, 12, 13, and 14. This video series is on building a quiz application and it addresses all the questions you have. The vidoes use Visual Basic but you can download the source in C#. Good luck, Bart
    Posted to Getting Started (Forum) by bbudz on 6/17/2008
  • Re: Text-Size of a Web Browser

    One of the worst things you can do as a web designer is design sites that look good only on your PC only in the browser you use to test it. You should design your site so that EVERY user (or as many as possible) can view your site fine without changing any of their settings, including font size. CSS is powerful enough to display a page correclty in almost every browser no matter what the user settings are as long as the page is designed correctly. If you need some help with CSS, just Google it or
    Posted to Web Forms (Forum) by bbudz on 6/2/2008
  • Re: Calling Subroutines

    Do you need to wire up the code-behind file in order to do the insertion or cancel, or to do the validation? If you are using validators along with ValidationGroups then you do not need to write any code. In the validators that are validting the fields did you also include ValidationGroup = "Button8"? Can you post some more code, such as the whole InsertItemTemplate? It might be easier to see where the problem is that way. Bart
    Posted to Getting Started (Forum) by bbudz on 6/2/2008
  • Re: Calling Subroutines

    [quote user="Ayomide"] I received the following error message implementing the function: Function Validate() As Boolean() function 'Validate' shadows an Overridable method in the base class 'Page'. To override the base method, this method must be declared, "Overrides". <==Comment from the green sqiggle. And, "Args.NewValues("LastName") ... <= Error Message "Name Args is not declared. Comment from the blue sqiggle. [/quote] I think that
    Posted to Getting Started (Forum) by bbudz on 6/2/2008
Page 1 of 10 (100 items) 1 2 3 4 5 Next > ... Last »