Search

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

Matching Posts

  • Re: Any free db comparison software ?

    Thanks a lot, that;s a very nice tool. If you know any free tools like this one who also let you change the db, that'd be fantastic.
  • Re: Urgent Help needed

    Check this great book http://www.cristiandarie.ro/asp20-sql-server-ecommerce You should be able to build all you need, the books .. the search engine and the paypal integration. You can do it all with this book and learn a lot in under a month and have a descent website. Good luck.
    Posted to Getting Started (Forum) by Sleb on 9/22/2008
  • Any free db comparison software ?

    Hello, I'm looking for a software to compare and syncronize databases between 2 servers, something like Redgate Problem has it's for personal use, I cannot afford to spend a great amount of money. Does anyone know of a free one or under $50 ? Thanks
  • Set Datalist DatakeyField ?

    Hello, I have a List of int[] that I use as a datasource for a Datalist. I want the first item of the array to be the datakeyfield but I have no idea how to set it. Here's the code: Datalist1.DataSource = (List<int[]>)Session["myList"]; Datalist1.DataBind(); Suggestions appreciated. Thanks
    Posted to Data Presentation Controls (Forum) by Sleb on 8/18/2008
  • Re: Are Sessions stored server or client side ?

    Hello, Thanks for all the replies so far. I did test it across multiple browsers and servers so it must be something wrong in my code. The code is below. I have a class called session manager public class SessionManager { public SessionManager() { } public static string ListId { get { return (string)HttpContext.Current.Session["ListId"]; } set { HttpContext.Current.Session["ListId"] = value; } } } Then in my code behind private static string listId protected void Page_Load(object
    Posted to State Management (Forum) by Sleb on 5/13/2008
  • Re: Are Sessions stored server or client side ?

    Ok, this is what I don't understand. Mine doesn't seem to be unique to each client session. Basically when we request the session (ListID) we always get the newest one stored regardless of the client. So User1 gets the session value from User 2 , the both of them will get the value from User 3 ....
    Posted to State Management (Forum) by Sleb on 5/13/2008
  • Are Sessions stored server or client side ?

    Hello, I have a site where a user can create a list of goods. Each time someone creates a list, we store the listId in the session so they can add items to their list. The problem is, Say User1 created a list and we store the listId (value=1) in a session (called ListID). User 1 add items to his list and in the db we store the listId, item name ... Now comes User2, creates a list and gets a listId value of 2 that we store in a session (called ListID). He can also add his items ... Now User1, who
    Posted to State Management (Forum) by Sleb on 5/13/2008
  • Re: Ambiguous

    If you run on .Net 3.5 in your config file , in the <controls> section add this line <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/> Then replace your scriptmanager by this one (don't forget to remove the <%@register ... line at the top <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" /> It should work. If you run on .Net 2.0 it maybe caused by the fact that Ajax
    Posted to Codeplex Club Starter Kit (Forum) by Sleb on 3/5/2008
  • Re: ModelPopUp does not focus with an embedded flash object...

    the "opaque" wmode value works okay in IE but it still doesn't solve it for Safari. Does anyone know how to fix this issue for this browser ?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Sleb on 2/25/2008
  • Re: Remove a row on rowdatabound

    Thanks but it's not what I'm after. I need to remove the row from the gridview, if you set it to visible false the row is still in the gridview and say you have a few pages or records, the last pages will be invisible rows only ! Not really good.
    Posted to Data Presentation Controls (Forum) by Sleb on 12/20/2007
Page 1 of 6 (55 items) 1 2 3 4 5 Next > ... Last »