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. ja2000

    asp:label and hash keys

    hei mike, i found another simple way... if all your labels are created during design time, why don't u simply use the FindControl method? it will return a control if it match the string you give, else, it will return null... so, just try it if (FindControl(mykey2)!=null) { TextBox something...
  2. ja2000

    using web service in aspx

    haha ^-^ it's worth a try, isn't it (:, nothing to lose anyway (:
  3. ja2000

    using web service in aspx

    oh yes, you've to use the wsdl command to make a dll from the web service in your local system, then you should put that on your bin folder of your web app ^-^ hope this information is useful (:
  4. ja2000

    Creating a New Text Box Class

    hi jack, well, jack, i don't think a user control is always meant to be a whole page (:... in my project, i've already used lots of user control just to make one control that have a new property just like the case you're in now (:... in my opinion, user control isn't that bad after all (...
  5. ja2000

    using web service in aspx

    ooohhh... i get it... well, why don't u install it? well, on my machine visual studio 6 and visual studio.net are running very well ^-^ no problem at all well, i've read an article about using web service manually (without visual studio help at all)... but i've forgotten what've written on it...
  6. ja2000

    asp:label and hash keys

    hi mike, let me try to answer your question well, as you've said, mykey2 wasn't a label at all, eventhough mykey2 is exactly the same as one of your labels id. perhaps you could try it a different way. if your labels were all made on design time, it'll be easy, just check all the labels that...
  7. ja2000

    using web service in aspx

    hi harmmeijer, are you using visual studio.net? if so, you should have added the web references first. you could simply do this : click Project -> Add Web References... then in the textbox give, you fill the address of your web service. for example : http://localhost/myservice.asmx then you...
  8. ja2000

    Regexp in Validation Control

    oooohhhhh... i got your problem ^-^... yeah it's true, the default is the Text property, well i don't know either if you want to compare the Value property. perhaps you should make your own validator that can check the Value property of the ControlToValidate control ^-^
  9. ja2000

    is there any solution for executing ASP.NET WebApplication & WService

    oohhh.. sorry... i misunderstood your question (:... well, i've to said that i didn't know why the notepad window didn't show up eventhough the process was already started (you can see the process by using the task manager) well, i'll try to find out the answer ^-^... sorry, i can't help you...
  10. ja2000

    Namespace in C#-I get an error every time.Please help

    woww... it's getting hot here ^-^... hey afduyi, i apologize for making you mad, but i really don't intend to do so, sorry for that by the way, i don't think i'm emotional man, i'm just trying to help (eventhough the words i used was sometimes a little bit confusing). or maybe i misunderstood...
  11. ja2000

    What is the difference (advantages) between VB.NET and C#?

    every languages in .NET have their own advantages and disadvantages (:... eventhough i was using c#, but i was pretty sure that there're almost no differences between vb.net and c#. ask jack what vb.net could do ^-^. well, coz now all the languages stand over the same framework, it means that...
  12. ja2000

    Namespace in C#-I get an error every time.Please help

    hah?? what do you mean it "this example works, but so should the other"? i've been using c# for the last 6 month (i've already used .net since beta 2), and i've also used the switch case syntax, and never found it as hard as you imagine... could you explain us why d u need the switch...
  13. ja2000

    Regexp in Validation Control

    another opinion from me jack ^-^ why don't you use dropdownlist rather than textbox? it will keep your client from inserting invalid value to your code ^0^ (just another opinion of mine... well i don't know what you're facing though ^-^)
  14. ja2000

    Microsoft MCAD for .NET

    so do iiiiii (:... well... we could share some good website for learning purpose if you don't mind ^0^ but i don't know when i'll take it (: i haven't decided it yet (:
  15. ja2000

    Long program process time causes server time-out

    you mean you're inserting thousands of records into a database in one process??? wowww... pretty cool but crazy ^-^ (joking) well, could you let us see your code (that insert thousands records into a database)... well, just curious you know ^0^... if you don't mind of course (:
  16. ja2000

    problems with datetime

    sorry jack (:... it's only my opinions (: coz i don't see anything wrong with his code (: so i suggest him to check the datetime format (: anyway, why don't you use stored procedure to reduce your problem (this way, you could reduce your problem domain to 2 areas, .net and sql server). first...
  17. ja2000

    Long program process time causes server time-out

    did your code contain any loops??? perhaps there contained a neverending loop ^-^ (just a thought)
  18. ja2000

    problems with datetime

    there's a little difference between datetime on the .net framework and the sql server... .net framework datetime is stored as this mm/dd/yyyy while the sql server's format of datetime is yyyy-mm-dd... so i guess you should've convert your datetime to sql server's format first before you insert...
  19. ja2000

    is there any solution for executing ASP.NET WebApplication & WService

    Do you want your application to run at your web server or your client's machine??? i think you want your application running on your client's local machine. if so, you have to pass through your client's local machine security check first. you can do this only if your client have trusted you...
  20. ja2000

    Microsoft MCAD for .NET

    thx for the information jack (:... are you gonna take it?

Part and Inventory Search

Back
Top