Search

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

Matching Posts

  • Re: Where's my formsauthentication cookie?

    That's probably because I gave the instructions for FireFox as stated in my previous post.
    Posted to Security (Forum) by cgeers on 6/16/2009
  • Re: MyISAM Table getting Corrupt

    Well this is purely a MySql issue, check out this thread: http://stackoverflow.com/questions/990780/myisam-tables-getting-corrupt As it states I suggest converting your tables to the InnoDb format.
    Posted to MySQL (Forum) by cgeers on 6/15/2009
  • Re: ASP.NET Menu control - Vertical and horizontal rendering

    Works fine in this example: http://www.asp.net/CSSAdapters/Menu.aspx In the top left of the screen there is "View source code" option. Hope it helps.
    Posted to CSS Friendly Control Adapters (Forum) by cgeers on 6/15/2009
  • Re: MembershipUser user = Membership.GetUser(PasswordRecovery1.UserName) returns null

    Did you reference the correct application (applicationName) for your membership provider in the web.config file? Sounds like the Membership provider is not finding the specified username in the database and thus returns null (or Nothing in VB.NET speak). http://msdn.microsoft.com/en-us/library/40w5063z.aspx
    Posted to Security (Forum) by cgeers on 6/14/2009
  • Re: Where's my formsauthentication cookie?

    Using FireFox: Go to the site Right click on the page Choose page-info Choose the tab security Click on the option view cookies There you will see all the cookies of the current website with all the necessary information. If it's a persistent (non browser-session) cookie the path will be mentioned here. Hope it helps...
    Posted to Security (Forum) by cgeers on 6/13/2009
  • Re: String variables in array

    Weirdest code I've seen in a while, but what you need is a Dictionary instead of an ArrayList. Try this: Dim vSequence As Integer = 101 Dim vBlend As Boolean = True Dim parameters As New Dictionary(Of String , Object ) parameters( "vSequence" ) = vSequence parameters( "vBlend" ) = vBlend For Each element As Object In parameters.Values Console.WriteLine(element.ToString()) Next Console.ReadLine()
    Posted to Visual Basic .NET (Forum) by cgeers on 6/13/2009
  • Re: CSS Friendly + asp:menu control

    If you are using the CSS Friendly Adapters than you should have the CSSFriendlyAdapters.browser file present in the App_Browsers directory. Open this file and comment out the following line to disable the CSS Friendly Adapters for the ASP.NET Menu control. <adapter controlType="System.Web.UI.WebControls.Menu" adapterType="CSSFriendly.MenuAdapter" /> Using this file you can choose to which controls the CSS Friendly Adapters are applied.
    Posted to CSS Friendly Control Adapters (Forum) by cgeers on 6/11/2009
  • Re: LINQ advanced reference

    I usually prefer the books from Apress. They have a bunch of books about LINQ. Check it out: http://www.apress.com/book/search?searchterm=linq&act=search For example "Pro LINQ Object Relational Mapping in C# 2008" focuses more on architecture using LINQ to SQL or LINQ to Entities (Entity Framework): http://www.apress.com/book/view/1590599659
    Posted to Book Reviews (Forum) by cgeers on 6/11/2009
  • Re: CSS-ASP.NET Administration tool

    There are enough tutorials on the web that teach you how to make your own ASP.NET Administration Tool. Just Bing for "ASP.NET Website Administration Tool". Although none of these replicate the look & feel of Microsoft's WAT Tool. Check out the source files and Cascading Style Sheet (CSS) (WebAdminStyles.css) of this tool. You can find it in the Framework directory of .NET 2.0. Usually it's located here: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETWebAdminFiles
    Posted to Getting Started (Forum) by cgeers on 6/11/2009
  • Re: Problem in Deleting id=@id

    Add the MsgId field to the SelectCommand of your SqlDataSource.
Page 1 of 28 (274 items) 1 2 3 4 5 Next > ... Last »