Search

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

Matching Posts

  • Re: HTML Renderer

    http://windowsforms.net/downloads/gdn/Xhtml2Rtf.zip
    Posted to System.Drawing/GDI+ (Forum) by Justin Rogers on 1/11/2004
  • Re: Email a HTML Page from a given URL ?

    Net classes certainly do make it easy. string url = "..."; WebRequest remoteFile = WebRequest.Create(url); WebResponse remoteResults = remoteFile.GetResponse(); using(StreamReader sr = new StreamReader(remoteResults.GetResponseStream())) { SmtpMail.Send(from, to, subject, sr.ReadToEnd()); sr.Close(); } remoteResults.Close();
    Posted to Tips & Tricks (Forum) by Justin Rogers on 1/11/2004
  • Re: easy way to show code ?

    The ASP .NET QuickStart tutorials had some syntax highlighting code that I put in there capable of easily displaying code. The controls are available if you've installed the SDK and expanded the QuickStarts onto your local machine. The Source Viewer component is actually quite safe and made it through quite a few security reviews.
    Posted to Tips & Tricks (Forum) by Justin Rogers on 1/11/2004
  • .NET Consultant/Developer Available

    Expanding my consulting services outside of MS only projects. Looking for any consulting/development contracts that can be fulfilled by my company, DigiTec Web Consultants, LLC. I currently reside in Redmond, WA, and will work on location in the Greater Seattle area, or remotely as needed. Will agree to limited travel. Partially up-to-date resume available at: http://www.games4dotnet.com/Profiles/Employees/JustinRogers.html
    Posted to Jobs (Forum) by Justin Rogers on 1/11/2004
  • Re: HTML Renderer

    Try HTML to RTF conversion and then use the RichTextBox in Windows Forms. For more information you might want to post your questions over at: http://www.windowsforms.net/Forums
    Posted to System.Drawing/GDI+ (Forum) by Justin Rogers on 1/11/2004
  • Welcome to the Internet Explorer Web Controls

    The Internet Explorer Web Controls for ASP.NET 1.1 installation files are available from the Internet Explorer Web Controls Download Packages page. You may use this forum to ask any questions about the installation and use of the new controls, or to submit any comments you have about the source code. This installation will add four new web controls added to your IDE Toolbox: A TreeView , a TabStrip , a MultiPage , and a Toolbar . Run IEWebControls.exe , and read carefully README.txt You have to compile
  • Re: Companies desire ASP.NET developers now?

    Yes, I did migrate 50,000 lines of code in less than a single day by myself (JScript to JScript.NET site). It isn't actually as difficult as it sounds because the language was made backwards compatible for exactly this reason. Does it include testing? Yep, did all of the testing the same day. The site took about 4 hours, it was almost a literal changing of the extensions of each of the files and changing the default language for the site in the web.config (much easier than doing Page Language declarations
    Posted to Jobs (Forum) by Justin Rogers on 8/24/2002
  • Re: Shows you how to connect to MySQL....

    I recommend setting the UpdateCommand specifically rather than have the command created based on the SelectCommand. By default when you create a new adapter, the select command gets set to the command you pass in the constructor. All other commands are dynamically created IF POSSIBLE. However, without enough information they can't be created. In this case you'll need to created the command yourself and set it explicilty. This simply involves setting the UpdateCommand property to a new command object
    Posted to MySQL (Forum) by Justin Rogers on 8/21/2002
  • Re: Contract Rates

    Well, I can state for a fact, that the reason you charge $100-$120 an hour is so that you can guarantee that if you get hit by a Dodge Viper, the company is either fully repaid for their loss of product, or that you are able to pay someone else to do the work in your stead. If I got hit by a Dodge Viper tomorrow, all of the companies I have contracts with are guaranteed that I will continue working for them to the best of my ability, or that someone more competent and skilled than me will finish
    Posted to Jobs (Forum) by Justin Rogers on 8/20/2002
  • Re: Problem with incomplete page loading

    Are you doing a Response.Redirect(); Response.End(); combo? Not explicitly shutting down the current connection may have something to do with your problems, especially if there is an intermediate proxy server or firewall device.
    Posted to Web Forms (Forum) by Justin Rogers on 8/19/2002
Page 1 of 2 (12 items) 1 2 Next >