Search

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

Matching Posts

  • Partial-Trust Environment

    So I am studying for a Microsoft Certification Exam and it is talking about partial trust environments and that they're a huge risk for interacting with the event log. Okay, fine. But can someone tell me what a partial trust environment is? I mean I get it, but I don't. I write mostly Web applications, so by nature of it being on the Web, is it partial trust? Or is partial trust interacting with users or interacting with 3rd party software? Not that this is an exam question per se, as much
    Posted to Security (Forum) by beepmaster on 2/1/2008
  • Re: Learning about Ajax

    Well, the following two lines of code generate the error I previously mentioned. I haven't even tried to manipulate anything yet, just put it on the page to see what I'm dealing with. <%@ register tagprefix="cc1" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" %> <cc1:cascadingdropdown id="evtMonth" runat="server" /> And to answer what I'm trying to do, I'm trying to do both. I need something quick and dirty to get an assignment done, then I can proceed to really learning
  • Re: Learning about Ajax

    Okay, I tried to incorporate the cascading menu. I get the following error, but I don't understand why. The project builds correctly. What am I missing? Message: Object reference not set to an instance of an object. Source: AjaxControlToolkit Helplink: Stack Trace: at AjaxControlToolkit.CascadingDropDown.CascadingDropDown_ClientStateValuesLoaded(Object sender, EventArgs e) at AjaxControlToolkit.ExtenderControlBase.LoadClientStateValues() at AjaxControlToolkit.ExtenderControlBase.Page_PreLoad(Object
  • Re: Learning about Ajax

    Looks like this might be it. Thanks.
  • Learning about Ajax

    Forewarning... I need basic dots connected. It has been suggested that I learn up on Ajax. I want to create a dropdown menu (listing all the months), that when clicked populates a .Net calendar with that month's info. Ajax was suggested so I wouldn't have to reload the page. Is this an easy thing to do? How would I do it. I will presume that an onChange event will call up the javascript function but once that function is called, how do I get that function to reload the calendar object? Thanks.
  • Re: Postback probem

    Thanks for all the help.
    Posted to Web Forms (Forum) by beepmaster on 10/20/2006
  • Postback probem

    I am trying to create a tv guide of sorts on my Web site. Where someone can tab over the upcoming week's worth of shows. I currently have some Javascript code that isn't 100%. Is there a way to create this as a .Net object without having the page reload each time someone clicks on a day? I guess my question is, how can I call up client-side code in a .net object, instead of the server. (LinkButton or Imagebutton)
    Posted to Web Forms (Forum) by beepmaster on 10/16/2006
  • Enterprise Library and .Net 2.0

    I'm trying to add a reference to my Web project for System.DirectoryServices. I have the following line of code in my web.config file that is causing an error in Visual Studio (2005) when I try to do this. It focuses on the fact that it can't find the Schema (I presume for DirectoryServices) at http://www.microsoft.com/practices/enterpriselibrary/08-31-2004/configuration . < enterpriselibrary.configurationSettings xmlns:xsd = " http://www.w3.org/2001/XMLSchema " xmlns:xsi = "
    Posted to Configuration and Deployment (Forum) by beepmaster on 10/12/2006
  • Re: Server.Transfer Method

    PAGE1 CODE Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmit.Click Response.Redirect("/employeedirectory/Default.aspx?f=" & fname.Text & "&l=" & lname.Text & "&d=" & department.Text & "&n=" & number.Text) End Sub I'm passing querystrings right now, just so the function works, but I'd rather not do this. So really,awhat I've been trying to do is. Response.Redirect
    Posted to Web Forms (Forum) by beepmaster on 9/27/2006
  • Re: Server.Transfer Method

    When I do that, the Request.Form("") doesn't work. Am I missing anything?
    Posted to Web Forms (Forum) by beepmaster on 9/27/2006
Page 1 of 3 (30 items) 1 2 3 Next >