Search

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

Matching Posts

  • Re: UpdateProgress could render span tags

    Nice ... here is my response to the comment about the ScriptManager ... private ScriptManager FindScriptManager() { return ScriptManager .GetCurrent( this .Page); }
  • Re: Can we install IIS on Windows XP Home Edition ?

    Yes you can. http://www.15seconds.com/issue/020118.htm Dont let anyone fool you, I have windows XP and successfully installed it. However, I had to go through a series of hacks. Also, once IIS is installed and the .NET framework is installed, you have to create a dummy ASPNET user on your computer and give it a password. You then have to configure IIS to use this account as the anonymous user. You also have to change the userName in the processModel tag in the machine.config to the name of the ASPNET
    Posted to Cassini Sample Web Server (Forum) by iwilld0it on 6/16/2005
  • Re: Using Response.Filter

    I made a slight inefficiency within the global replace ... here is the ajusted portion of the code ... Public Overrides Sub Write(ByVal buffer() As Byte, ByVal offset As Integer, ByVal count As Integer) ' Place Response Text In A String Builder Dim output As New StringBuilder(mEncoding.GetString(buffer, offset, count)) ' HERE IS THE ADJUSTMENT: Perform Global Replaces Call output.Replace("{HOST}", "http://www.mysite.com") ' Write The Newly Modified Response Stream mFilter.Write
    Posted to Tips & Tricks (Forum) by iwilld0it on 1/19/2004
  • Using Response.Filter

    For those of u interested in using the Response.Filter property. Here is a custom filter class I wrote ... Public Class ResponseFilter Inherits IO.Stream Private mFilter As IO.Stream Private mEncoding As System.Text.Encoding Sub New() With HttpContext.Current.Response mFilter = .Filter mEncoding = .ContentEncoding End With End Sub Public Overrides ReadOnly Property CanRead() As Boolean Get Return mFilter.CanRead End Get End Property Public Overrides ReadOnly Property CanSeek() As Boolean Get Return
    Posted to Tips & Tricks (Forum) by iwilld0it on 1/19/2004
  • Re: Configuration Error

    I tried the MS solution and excluded the ASP temp folder and it did not work. Futhermore, I disabled Index servcies and still I recieve a configuration error again like the one below ... Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration
    Posted to Web Forms (Forum) by iwilld0it on 8/1/2003
  • Configuration Error

    Im not sure if its an ASP.NET or Visual Studio.NET related issue. Me and my colleague at work seem to get this particular error all the time. ----------------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Access is denied:
    Posted to Web Forms (Forum) by iwilld0it on 7/31/2003
  • Re: CheckBox List How doe you check the check boxes on load

    It looks like you have to bypass the databind method of adding items to the CheckBoxList. Below is some code that manually adds items to to a CheckBoxList control by looping through a DataReader. As the code loops through each record, a boolean field is assigned to the Selected property of the CheckBoxList list-item. For your version, just replace the sqldatareader with your datatable and loop through the datatable manually. Protected WithEvents chkBoxLst As CheckBoxList .... Private Sub Page_Load
    Posted to Web Forms (Forum) by iwilld0it on 7/28/2003
Page 1 of 1 (7 items)