Search results

  1. T

    How do I put blog entries into my HTML website?

    This may be possible with some server-side scripting but you may have to just manually copy-and-paste the blog entries in there. To make this easier it would be useful to use a good Wysiwyg editor such as Mozilla Seamonkey, Dreamweaver, etc.
  2. T

    I can't see the html code on my internet explorer! HELP!?

    That is the address bar, right click at the top and re-enable it. HTML is the source code for the web page.
  3. T

    How do you replace <these> with Perl regular expressions?

    For example: $string = "abcabc<BLOB>abcabc"; $newstring = s/....; I am trying to replace <BLOB> with any given word but am having slight issues as I am not regex-friendly...
  4. T

    PHP HELP? Cannot send session cache limiter - headers already sent?

    The HTTP header is sent before you send any HTML to the client. Thus, if you have a single space in your code... anything at all before you call a function that makes use of the HTTP header (i.e. the "session" call).... it will fail, as the header has already been sent. For this, you need to...
  5. T

    What Perl/Java frameworks provide tools for CLP, and/or basic network functions?

    In Perl, and Java, I need to know how to do networking functions, as well as CLP commands (i.e. DOS or Terminal). What Java frameworks allow for this, and what Perl modules help? If there are no frameworks, what system functions may I execute with the Perl/Java functions that would allow such...
  6. T

    Why is it that javascript can make changes to the DOM, but those changes

    I know what you mean. The thing is that the JavaScript is the source. The DOM is referring to the things on screen, which are essentially programming objects that are manipulated to HTML source. If you were to change the source code dynamically, there would be no way to find out what it...
  7. T

    What are the differences between the ASP languages?

    I hear many terms related to ASP- ASP.NET ASP .NET DotNet and I think some more. I would assume .NET and DotNet are the same. I am an experience web developer with a background in PHP/JSP. What are the differences, purposes, open/closed-sourceness, and syntax styles of all the above, and any...
  8. T

    What are the differences between the ASP languages?

    I hear many terms related to ASP- ASP.NET ASP .NET DotNet and I think some more. I would assume .NET and DotNet are the same. I am an experience web developer with a background in PHP/JSP. What are the differences, purposes, open/closed-sourceness, and syntax styles of all the above, and any...
Back
Top