Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kenrevak

    logon dialog

    Played with various options there but no joy. Had another member of my team try it and they didn't get the logon prompt. This leads me to believe it must be something to do with the VPN. Thanks for you help.
  2. kenrevak

    logon dialog

    Checked and IE was already set as you suggest. Thanks.
  3. kenrevak

    logon dialog

    I have <authentication mode="Windows" /> in my web.config file but when I browse to the site on our network I get the login dialog box. How do I set things up to avoid this?
  4. kenrevak

    Nullable enums

    How do you do a type check for nullable enums? enum MyEnum? {One, Two}; typeof(MyEnum).IsEnum is false.
  5. kenrevak

    Disabled control values

    ah ha! If is do the setting in the OnPreRender method is works find, setting it in the Render method does not work. Not sure why but that is a question for another day. Thanks!
  6. kenrevak

    Disabled control values

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled...
  7. kenrevak

    Disabled control values

    And you get "Testing" back as the value since the page was recreated with that value on the postback. If you change the value in code (say to "xxx")before sending the page (I'm doing mine in the C# Render method) your code will still be printing "Testing" not the "xxx" that was sent. The point...
  8. kenrevak

    Disabled control values

    Simple scenario. You have and textbox on the screen. The user is not authorized to update it so you set ReadOnly=true. This causes ASP.Net to not return the contents of the field on the postback. How do you detect that the text is blank because of the readonly as opposed to the contents...
  9. kenrevak

    Disabled control values

    New to ASP.NET. If a control is disabled, readonly, invisible the value it contains is not returned to the server. How do you handle detecting when the data is not returned as opposed to when it is just blank? (Created a default value and detecting that sounds a little archaic but I can't...

Part and Inventory Search

Back
Top