Search

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

Matching Posts

  • Re: Target Frames but done in code

    I created the following function (C#, but should be easily converted to VB) .. private string SetURL(string URL, string TargetFrame) { StringBuilder sb = new StringBuilder(""); sb.Append("<script language=javascript>"); sb.Append("parent.frames('"); sb.Append(TargetFrame); sb.Append("').location='"); sb.Append(URL); sb.Append("';"); sb.Append("</script>"); return(sb.ToString()); } It can be called like this ... Response.Write
    Posted to Web Forms (Forum) by tailspin on 5/24/2004
  • IE Find (Ctrl+F) problem on web forms

    I have noticed that Ctrl+F doesn't always work on web forms, especially if I have a grid control on them. If I press Ctrl+F in IE I get the Find dialog box. If I type in a word I can clearly see on the web form, but in a grid, and press Find Next, nothing happens. It doesnt tell me it is finished searching the document, just sits there no matter how many times I press the button. It doesn't highlight what should be the found word either. I looked at the source and the word I am searching for is clearly
    Posted to Web Forms (Forum) by tailspin on 4/6/2004
  • File.Exists() problem since switch to v1.1 of the .NET Frameworks

    Hello, In a web application I developed a while back using VSNet 2002 and v1.0 of the Frameworks, I was using File.Exists("path to file on web server"), and it worked fine. I have recently done some work to the application since switching to VS2003 and v1.1 of the Frameworks, and the same exact code (just recompiled) won't return true for the average user if the file actually does exist on the server. If I run the application as an admin user, the code behaves as it had in the past, any
    Posted to Security (Forum) by tailspin on 3/17/2004
  • Re: Unable to get active username

    Yes I did!!!! Thanks a lot!!!
    Posted to Web Forms (Forum) by tailspin on 2/16/2004
  • Unable to get active username

    Starting today I have been unable to get the current logged in username from previously working code on my development PC. I have tried ... HttpContext.Current.User.Identity.Name; and .. Request.ServerVariables["AUTH_USER"]; Both of these methods return "" on my development PC, but work on my production server. Before today both of these routines worked on my development PC just fine. I am running XP Pro on my development PC and am using VS 2003 with the v1.1 Frameworks. All I
    Posted to Web Forms (Forum) by tailspin on 2/16/2004
  • Re: System.InvalidCastException

    I am having the same issue since moving to VS2003 recently. I am trying to use the System.Data.OracleClient 1.0.5000.0, which I believe is the newer version which came with the v1.1 .NET Framework. I have been able to confirm that by switching back to the earlier version (1.0.3300.0), the problem goes away. I believe this earlier version was distributed as an add-on right after VS2002 was brought out. The code that causes the error with the newer dll is when I use any type of Parameters.Add method
    Posted to Oracle (Forum) by tailspin on 2/6/2004
  • Re: AD Attribute issue

    Thanks Ryan. We were able to browse ok with the ldap browser, so I don't think it is a permission issue. We just cleared the cache and re-booted the production server and the same problem exists. I really thought the cache thing would do it since everything works fine when I run on the IIS server on my development pc. This one is really frustrating.
    Posted to Active Directory and LDAP (Forum) by tailspin on 1/28/2004
  • AD Attribute issue

    I have an application in which I send a list of AD attributes I want returned, and then I display the returned set in a grid. This works fine on my development machine (XP Pro IIS 5.1), but when I copy the application to our production server (W2K IIS 5.0) the call to AD errors out. The odd thing is that I have determined that certain attributes appear to be the culprit. I am looking for sAMACountName, department, mail, employeeID, and cn. When I pass the request on my development machine I get a
    Posted to Active Directory and LDAP (Forum) by tailspin on 1/27/2004
  • Re: Redirect in Frame

    I have written a function in C# which handles this in code-behind. //----------------------------------------------------------------------------- private string SetURL(string URL, string TargetFrame) StringBuilder sb = new StringBuilder(""); sb.Append("<script language=javascript>"); sb.Append("parent.frames('"); sb.Append(TargetFrame); sb.Append("').location='"); sb.Append(URL); sb.Append("';"); sb.Append("</script>"); return
    Posted to Web Forms (Forum) by tailspin on 10/31/2003
  • Re: <asp:button> will not call its .click method

    Go into the Web Form Designer generated code and make sure the button.click event is listed in the InitializeComponent function. I have had strange things happen where, for reasons as yet unknown, my InitializeComponent code got whacked by VS.
    Posted to Web Forms (Forum) by tailspin on 10/27/2003
Page 1 of 2 (19 items) 1 2 Next >