Search

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

Matching Posts

  • Re: Can anyone recommend me a Rich Text Editor

    My company recently integrated the Cute Editor into one of our applications. After thorough testing in our development environment, we uploaded our application into 3 of our production environments, only to find out that the Cute Editor has significant problems working properly in a load balanced web server environment. After 14 days of going back and forth with their support department (which consists of one guy), trying to get them to fix the problem, I finally had to break down and buy the source
    Posted to Component Discussions (Forum) by shamblen on 6/24/2005
  • Billing System?

    I would like to know if anyone has come across an off-the-shelf e-commerce application or open source project that we can integrate with our application that would allow us to do the following things: 1. The ability to create "features" that we can sell to our users, which we would bill for on a recurring basis. For example, I would like to be able to bill $10 per month for the ability to gain access to a specific section of our application. I would like to have the ability to have 5 or
    Posted to Getting Started (Forum) by shamblen on 1/17/2005
  • Re: Accessing Mail server for incoming email

    There are is a variety of .NET SMTP/POP components on the market that will allow you to accomplish what you are describing. The one that I have used, and find is very reliable, is the QuikSoft EasyMail.NET. We are currently using this component in an application with over 1000 users, processing over 100,000 emails per day. It's very reliable and comes with all the documentation you could ever need.
    Posted to Getting Started (Forum) by shamblen on 9/24/2004
  • Re: Double click event throgh popup

    I hope this is what you need. The example will pass the ID of the return field to the popup window, the popup window will allow you to select a row and return the row's value to the field ID that you passed to the popup. <html> <head> <title>Main.htm</title> <script language="JavaScript"> <!-- function OpenPop(f) { window.open('popup.htm?fieldname=' + f,'','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location
    Posted to Client Side Web Development (Forum) by shamblen on 9/23/2004
  • Re: UserControl question.

    Make this links in the navigation control change the src of the IFrame using javascript. I used urls of different web sites for illustration: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script language="JavaScript"> <!-- function navigateUrl(url) { document.getElementById("testIFrame").src = url; } //--> </script> </head> <body> <table border="0" cellpadding="0"
    Posted to Web Forms (Forum) by shamblen on 9/22/2004
  • ImageButton OnClick Verification Within Repeater

    If you want to add a client side confirmation to an ImageButton onCommand event, within a Repeater.... testRepeater.DataSource = GetData(); testRepeater.DataBind(); for(int x = 0 ; x < testRepeater.Items.Count ; x++) { ((ImageButton)testRepeater.Items[x].FindControl("btnDelete")).Attributes.Add("OnClick","if(confirm(\"Are you sure you want to delete this item?\")) { return true; } else { return false; }"); }
    Posted to Tips & Tricks (Forum) by shamblen on 9/21/2004
  • Re: File Download from another Server?

    Is there a specific reason that you are not creating a virtual directory in IIS that points to a share on the workstation? That would be the simple solution. If you still want code that will allow you to access files over the network, try this: string strPath = "\\\\servername\\sharename\\filename.jpg"; FileStream fs = File.OpenRead(strPath); byte[] b = new byte[fs.Length]; fs.Read(b,0,b.Length); fs.Close(); Response.AddHeader("Content-Type","image/jpeg"); Response.AddHeader
    Posted to Web Forms (Forum) by shamblen on 9/21/2004
  • Re: data and "return"

    You could create a class that has 3 properties (a dataset and 2 integers). Then you could have your method create a new instance of that object, populate the properties and return the object. That would allow you to return 3 values.
    Posted to Getting Started (Forum) by shamblen on 9/21/2004
  • Re: Repeater - n Cols per Row?

    You could use the Container.ItemIndex property to determine which item the repeater is currently rendering and have it draw a new row if the current ItemIndex can be evenly divided by 3. Like this: <asp:Repeater id="test" runat="server"> <HeaderTemplate> <table> </HeaderTemplate> <ItemTemplate> <!-- this is to close the previous row if it's not the first item --> <%# Container.ItemIndex % 3 == 0 && Container.ItemIndex > 0 ? "<
    Posted to Data Presentation Controls (Forum) by shamblen on 9/21/2004
  • Re: wysiwyg editor

    I'm not sure if buying an editor is in your budget, but the RichTextBox control is great. I am using it all throughout our application and have never had a problem with it. Go to www.richtextbox.com. They have sample code that shows how you can implement their control.
    Posted to Client Side Web Development (Forum) by shamblen on 9/21/2004
Page 1 of 2 (15 items) 1 2 Next >