Search

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

Matching Posts

  • Re: Custom control only working in app_code folder

    It's a Web Application Project. You don't get an App_Code folder by default. I followed an example stating that you needed to place the custom control in the App_Code folder and it worked but no Intellisence. If I move the control out of the App_code folder, Intellisence works but the control isn't recognized. There has to be a solution for this.
    Posted to Custom Server Controls (Forum) by cecook05 on 8/3/2009
  • Re: Trouble finding HTMLEditor control

    I needed to change the namespace in the register directive to AjaxControlToolkit.HTMLEditor. Duh! <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor" TagPrefix="cc1" %> <cc1:Editor ID="Editor1" runat="server" />
    Posted to ASP.NET AJAX Control Toolkit (Forum) by cecook05 on 8/1/2009
  • Trouble finding HTMLEditor control

    I downloaded AJAXControlToolkitBinary.zip Version 3.0.30512 because I want to use the HTMLEditor control. I added it to my bin directory but the new HTMLeditor is not showing up. I opened the DLL using reflector and it looks like the editor is in its own namespace, AjaxControlToolkit.HTMLEditor. What do I need to do to access this control?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by cecook05 on 8/1/2009
  • Custom control only working in app_code folder

    I'm trying to extend the HtmlEditor control to limit the items on the toolbar. Very simple, works fine, but it only works when I put the class file in the app_code colder of my web project. This would be fine, but Intellisence does not work in the App_code folder which makes it next to imposible to modify. Because of the Intellisence issue, I have all my class files in the root folder. If I put the customEditor class I created in the root, the server tag isn't recognized and I get an error
    Posted to Custom Server Controls (Forum) by cecook05 on 8/1/2009
  • Re: Error creating users

    I managed to get it working. I copied the machine.config file from my work pc to the pc where I was getting the errors. Then I determined that I needed to change the provider names in my web.config so that they didn't conflict with the ones in the machine.config file.
    Posted to Security (Forum) by cecook05 on 4/16/2009
  • How to output an empty page

    This may sound like an odd request but I need to load a page, do some work with querystring values, and either render a single line of text or a blank response. Returning the single line is not a problem. In my ASPX page, I have no form, no html markup, just a page diective, and I do a response.write in my code behind to write the single line. I'm having a difficult time returning 'nothing' If I do this: Response.write(""); I get this: <!DOCTYPE HTML PUBLIC "-//W3C/
    Posted to Web Forms (Forum) by cecook05 on 4/15/2009
  • Re: Error creating users

    I tried your code and the user gets created when I create it via the web page. However, I still get the an error when I try to create a user via the ASP.Net configuration utility. I suspect that it has something to do with my machine.config file. Worst case, I can just use a web form. Actually would be esier, but I'd like to resolve the problem. My machine.config is listed below in case anyone can spot what is causing the error. <?xml version="1.0" encoding="UTF-8"?>
    Posted to Security (Forum) by cecook05 on 4/15/2009
  • Error creating users

    I'm trying to get membership services working on a remote server. I managed to get the database tables and stored procedures installed and can connect to it using ASP.Net configuration in VisualStudio. I can create new roles and access rules but not users. When I click on create new user I get; An error was encountered. Please return to the previous page and try again. The vital peices from my web.config are below. Am I missing anything? <authentication mode="Forms" /> <membership
    Posted to Security (Forum) by cecook05 on 4/13/2009
  • Re: Mail message not being delivered

    If I enter a recipe into a the textbox (with line feeds) and add it to my database, everything works fine (I can email the recipe). If I type the same recipe in a text editor, copy it and paste it into the textbox before adding it to my database, then the recipe can not be sent. I'm using a try catch and no error is getting thrown, it just doesn't get delivered. The problem seems to be the line feeds, not any special characters.
    Posted to Getting Started (Forum) by cecook05 on 2/15/2009
  • Mail message not being delivered

    I have an application that allows you to enter recipes into a SQL DB. It also allows you to send them to a friend. Something is preventing some of the emails from being sent correctly. This has happened when the recipe was written in Word and pasted into the application's multiline text box. It also happened when doing a screen copy of another online recipe. Do I need to do some form of encoding to handle special characters in the mail message? My code: string strFrom = "xxxx.xxxx@gmail
    Posted to Getting Started (Forum) by cecook05 on 2/13/2009
Page 1 of 16 (151 items) 1 2 3 4 5 Next > ... Last »