Search

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

Matching Posts

  • Re: Opening Word 2003

    Anyone have any ideas or experience with this?
    Posted to Getting Started (Forum) by jbezanson on 4/7/2009
  • Opening Word 2003

    I have a WebForms project that needs to interact with Word 2003 a little bit. What I need to do is open a Word document that is on the server and read the contents (must preserve formatting) and then save that content to a database for future use. Saving back to a Word document format is acceptable as a last resort. I have the following code that opens a Word document and outputs the contents to a textarea but the formatting is lost. ApplicationClass app = new ApplicationClass(); string filePath
    Posted to Getting Started (Forum) by jbezanson on 4/7/2009
  • Re: Running a exe file in webpage

    Your code is starting a separate process to run the exe. It will not show on the web page. I don't think there is a way to do this. If you want the download process to interact with the web page you will have to make the download part of the page's code not initiate an outside program. You could refactor the code so that your web page and the download.exe share a common library to reduce maintenance.
    Posted to Getting Started (Forum) by jbezanson on 10/10/2008
  • Re: Tool to to generate property classes ?

    I am not sure that I understand correctly but SubSonic is a free tool that can generate your data classes for you and makes querying easier.
    Posted to Getting Started (Forum) by jbezanson on 9/26/2008
  • Re: how to create dynamicaly links for profile page or blogs??

    The most common approach is to give the submitted blog an ID in the database. A dynamic blog url might look like this (http://yoursite.com/blogs.aspx?id=47). This tells blogs.aspx that you are looking for blog 47. Your code on blogs.aspx would have a dynamic SQL statement that would retrieve blog 47 from the database.
    Posted to Getting Started (Forum) by jbezanson on 9/26/2008
  • Re: Create UpdateProgress programmatically

    This works great in a WebForm. Thanks so much. I will be trying it out in a Composite Control next. What is your blog url? I will be waiting to read that post. Thanks again! ***NVM I found the url in your sig.
    Posted to ASP.NET AJAX UI (Forum) by jbezanson on 2/7/2008
  • Re: Create UpdateProgress programmatically

    Awesome, I'll be sure to try this and let you know right away how it works out.
    Posted to ASP.NET AJAX UI (Forum) by jbezanson on 2/7/2008
  • Re: Create UpdateProgress programmatically

    Thanks but I am creating the UpdateProgress completely in the CodeBehind and adding it to form1.Controls. I am not trying to access it from CodeBehind. I am creating it. 1 UpdateProgress1 = new UpdateProgress(); 2 UpdateProgress1.ID = "UpdateProgress1" ; How do I add the ProgressTemplate? I tried this but got an error saying that the ProgressTemplate is required. 1 UpdateProgress1.Controls.Add( new LiteralControl( "Loading..." ));
    Posted to ASP.NET AJAX UI (Forum) by jbezanson on 2/7/2008
  • Create UpdateProgress programmatically

    How can I create an UpdateProgress in the codebehind? I need to do this because I would like to wrap it in a CompositeControl. I tried adding the content to the Controls collection of the UpdateProgress but got an error saying it needed to have a ProgressTemplate. How can I add that?
    Posted to ASP.NET AJAX UI (Forum) by jbezanson on 2/7/2008
  • Re: Server Application Unavailable error message

    I have discovered a bit more information about this error. The EventViewer shows an Application Warning for ASP.Net. The Warning is a ThreadAbortedException. Anyone know the possible cause of this?
Page 1 of 18 (171 items) 1 2 3 4 5 Next > ... Last »