Search

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

Matching Posts

  • Re: How to install a font on server?

    Do you use shared hosting, or can you get full access to the server? If you can get full access, you can add fonts via the Fonts applet in the control panel. If you can't get full access to the server, I think there are ways to load font files at run time, but I am not sure how great that works.
    Posted to Web Forms (Forum) by wunderkinder on 10/24/2009
  • Re: Export to Money/Quicken

    Have you Googled it or checked the Money and Quicken Web sites?
    Posted to Web Forms (Forum) by wunderkinder on 10/16/2009
  • Re: Paragraph

    Did you try this one? Replace(strInput, " ", " ") Of course, replace strInput with the name of your string.
    Posted to Web Forms (Forum) by wunderkinder on 10/16/2009
  • Re: GridViewEvent Conflict Between Master Detail Edit and Paging

    Ah, nuts. I'm getting DataGrids mixed up with GridViews. Bottom line is that Peter is correct - you should explicitly handle going to the detail page. Your current code makes going to the detail page the default action if the command name is not cancel, edit, delete, or update. You need to have it only go to the detail page if the command name is "detail".
    Posted to Web Forms (Forum) by wunderkinder on 10/16/2009
  • Re: GridViewEvent Conflict Between Master Detail Edit and Paging

    Your sub doesn't have any code to handle paging. The first thing I'd do in your existing sub is check for row type and only proceed if it is an item row. This will prevent the sub from redirecting when you really want to page the grid. You can then add code to specifically handle paging.
    Posted to Web Forms (Forum) by wunderkinder on 10/16/2009
  • Re: DNN Video player

    I use Ultra Video Gallery on several portals, and I have been very impressed with it. http://www.bizmodules.net/Products/UltraVideoGallery3/Overview/tabid/124/Default.aspx
    Posted to Portal Starter Kit (Forum) by wunderkinder on 10/15/2009
  • Re: embed ASP FileUpload Control in a Web User Control

    I don't believe the file upload control sends the file name without sending the file contents. If the file content is not getting sent to the server, the file name isn't either. Among other things, if you are using the file upload control inside of an AJAX UpdatePanel, you'll run into this type of issue. Also, make sure you have the encoding set properly in your form (ENCTYPE="multipart/form-data").
    Posted to Web Forms (Forum) by wunderkinder on 10/15/2009
  • Re: Paragraph

    cdoMessage.HtmlBody = EmailMessageBody.Replace(VbCrLf, "<br/>") If you were saving the form results to the database, you'd probably want to manipulate the fields individually.
    Posted to Web Forms (Forum) by wunderkinder on 10/15/2009
  • Re: embed ASP FileUpload Control in a Web User Control

    Can you post your javascript? I haven't tried doing what you are trying to do, but if the full path is displayed in the control, you should be able to grab that value...
    Posted to Web Forms (Forum) by wunderkinder on 10/15/2009
  • Re: Paragraph

    Are you getting any errors? I didn't notice earlier that you are using classic asp. I'm rusty with vbscript, but you could try this: EmailMessageBody = Replace(EmailMessageBody,VbCrLf, "<br/>") EmailMessageBody = Replace(EmailMessageBody,VbCr, "<br/>") EmailMessageBody = Replace(EmailMessageBody,VbLf, "<br/>") cdoMessage.HtmlBody = EmailMessageBody EmailMessageBody = Replace(EmailMessageBody,VbCrLf, "<br/>") EmailMessageBody
    Posted to Web Forms (Forum) by wunderkinder on 10/15/2009
Page 1 of 97 (964 items) 1 2 3 4 5 Next > ... Last »