Search:

Type: Posts; User: Memnoch1207

Page 1 of 13 1 2 3 4

Search: Search took 1.12 seconds.

  1. Replies
    2
    Views
    534

    Re: How to read the Lines from Text File?

    Like this...


    <%
    Set fso = Server.CreateObject("Scripting.FileSystemObject")
    Set file = fso.GetFile(Server.MapPath("test.txt"))
    Set content = file.OpenAsTextStream(1, -2)

    Do while not...
  2. Replies
    65
    Views
    4,523

    Re: [Serious]I'm resigning from work

    What? Who do you work for, your parents?!

    I can see how that conversation went...
  3. Replies
    36
    Views
    1,408

    Re: Why I don't like the computer industry

    I was a .NET developer for 5 years and all of my time was estimated and documented. My projects were very micro-managed and I was always facing deadlines.

    I left application development and took a...
  4. Replies
    3
    Views
    612

    Re: a general question about ASP

    ASP and ASP.NET are not the same thing. If you know VB you can pick up ASP pretty quickly, but ASP.NET is completely different than traditional ASP.

    I sincerely doubt you can pick up ASP.NET in a...
  5. Replies
    42
    Views
    1,842

    Re: I need to get fired

    Just start searching for another job while on their time...internet, during your long 2-3 hour lunches, in the mornings which is why you're always 2 hours late.

    In the end you'll be making the...
  6. Replies
    22
    Views
    1,082

    Re: :sigh: Not Happy with work

    Ugh...I'd end up living under a bridge in a box if I tried to succeed at that...even my wife wants me to dress/undress with the lights off!
  7. Replies
    22
    Views
    1,082

    Re: :sigh: Not Happy with work

    I'm quitting my job in 4 days (Friday) but they don't know it yet...I'm taking a job doing what I want to do plus it pays $10K/year more and I get to work from home!

    If you don't like what you are...
  8. Replies
    18
    Views
    653

    Re: What would you do?

    Either an Historian (Ancient Egypt or Old 'Wild' West) or a Doctor.

    Actually, I'd like to just be a retired billionaire!
  9. Thread: Oxymorons

    by Memnoch1207
    Replies
    25
    Views
    1,260

    Re: Oxymorons

    First Annual

    or you could just go to http://www.oxymoronlist.com
  10. Replies
    47
    Views
    1,674

    Poll: Re: Do You Have Children?

    Two daughters, 5 and 2.
  11. Replies
    33
    Views
    1,027

    Re: If you could bring one Car model back...

    OOOOOOHHHHH....what I wouldn't do for an "Eleanor"!!!

    http://www.ramspeed.nl/awm/fotos_groot/P1010145.jpg
  12. Replies
    4
    Views
    589

    Re: Remembering form values

    Why not allow them to just attach files on the same page?

    or

    Why not just display a pop-up window of the other form and allow them to upload the attachments in the pop, this way they never have...
  13. Replies
    33
    Views
    1,027

    Re: If you could bring one Car model back...

    Ditto RobDog's response...bring back Eleanor...not these 2007 mustang wanna-be Eleanor's with all the Roush racing effects!
  14. Re: [2005] Event to change control values?

    An additional option would be to disallow NULL values in the database, instead using default values for fields.
  15. Replies
    5
    Views
    706

    Re: Is the VS/ASP.NET stuff buggy?

    I've discovered issues where the CSS class names are case sensitive in ASP.NET 2.0, which has cause problems which resulted in the styles not being applied.
  16. Replies
    3
    Views
    586

    Re: [2005] New To ASP.Net SOZ!

    ASP is a technology. VB Script is a scripting language.
    .NET whether windows or web (ASP.NET) is written in one of several (compiled) languages (C#, J#, VB.NET, etc...)
  17. Replies
    6
    Views
    674

    Re: Asp.net 2.0

    You need to install the .NET 2.0 Framework and then register it with IIS.
  18. Replies
    101
    Views
    2,903

    Re: What Car do you Drive?

    Well, not better...just well...yeah...better...

    Once you join the military you will never be a civilian again...

    You're either

    Active: Soldier, Marine, Seaman, etc...

    Or
  19. Replies
    4
    Views
    1,284

    Re: Members section of new website

    1. Parts of your site are vulnerable to XSS (Cross Site Scripting) attacks.
    Blah

    2. Your cookies are in plain text and are associated with "Usernames"

    I didn't actually attempt to hijack an...
  20. Poll: Re: (Serious) Which of these degrees would you choose

    Computer Science. I was also a .NET developer for almost 4 1/2 years before moving into security.
  21. Replies
    13
    Views
    1,108

    Re: [Serious] Resumé

    Show them how diverse your skills are...port the HTML OS to XML!!
  22. Poll: Re: (Serious) Which of these degrees would you choose

    "Ethical Hacker" is a crap name for it anyway. The preferred terminology is "Penetration Tester".

    There are tons of different titles bestowed on security assessors and most of us hate "Ethical...
  23. Replies
    6
    Views
    6,522

    Re: Display raw XML in an ASP.NET page

    Just trying writing the xml out to the text property of a label control.
  24. Re: What's a good tool for stress testing websites?

    You might look into Mercury LoadRunner .
  25. Replies
    7
    Views
    634

    Re: ajax framework

    AJAX.ASP.NET
  26. Replies
    3
    Views
    575

    Re: Display problem

    Do you have your pages Layout property set to FlowLayout?
  27. Re: [not sure about the version] Cookies and Form authentication

    My hotmail account doesn't let me login unless cookies are turned on. This is understandable as it doesn't use forms authentication, it uses passport authentication with requires cookies being...
  28. Replies
    21
    Views
    1,100

    Re: How do I price my software?

    If you signed an employment contract with you employer, read it carefully.
    Make sure it doesn't have anything like "Conflict of interest", "Any work done during our employ belongs to the company",...
  29. Re: [not sure about the version] Cookies and Form authentication

    In IE 7 the answer is yes.

    Example:
    To turn off cookies in IE 7 do the following:

    Click Tools > Internet Options
    Select the Privacy tab
    Click the Advanced button
    Click "Override automatic...
  30. Replies
    44
    Views
    1,545

    Re: The Good Wife's guide

    I printed it out and placed it on my refrigerator at home as a "Training Manual" for my wife!
  31. Replies
    4
    Views
    701

    Re: [2005] Write HTML code dynamically

    Why not use a global StringBuilder object, append all the function calls text to the object, then write the text of the object out to the screen?

    Example:

    Public sb As New StringBuilder
    ...
  32. Re: [2005] Treeview question, should be easy?

    Read This
  33. Replies
    4
    Views
    670

    Re: Good books on ASP.NET and OOP

    Book #1

    Book #2
  34. Re: [2005] Help with IsPostBack

    Example:

    Protected Sub Page_Load(blah, blah)
    Dim intCatID As Integer = Request.QueryString("id")

    If Not Page.IsPostBack Then
    LoadCategory(intCatID)
    End If
    End Sub
  35. Replies
    4
    Views
    737

    Re: editing web parts

    Try downloading and reviewing my ASP.NET 2.0 tutorial, maybe it will help you with your issue.

    ASP.NET 2.0 Tutorial
  36. Replies
    4
    Views
    737

    Re: editing web parts

    How are you creating the WebPart? Is it a UserControl or are you creating it completely from code?

    The Editor part is associated with a webpart zone.
  37. Replies
    6
    Views
    712

    Re: Message Box Function / Code

    Look into just javascripts "prompt" function.
  38. Replies
    3
    Views
    691

    Re: help, simple messagebox w VBscript

    What browser are you using? VBScript only works in Internet Explorer.
  39. Replies
    7
    Views
    744

    Re: adding a webUSerCOntrol Dynamicly

    Example:


    Determine the View that was selected
    mintSelectedView = Integer.Parse(e.Item.Value.ToString)

    Select Case e.Item.Value
    Case 0 ' Customers Tab
    LoadUserControl("Customers")
    ...
  40. Replies
    4
    Views
    750

    Re: sdr.getvalue(index), simpel question

    Or just sdr("ColumnName").ToString
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width