Search

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

Matching Posts

  • Re: Random NULL sessions early in the web request life cycle.

    Any possibility the problem to be in the method you are calling in the Session_Start()? Any HTTPHandlers / Modules before the request?
    Posted to State Management (Forum) by donchevp on 11/17/2009
  • Re: Why asp knows about row count in Page_Load phase?

    My guess is that the ODS is bound and the grid view can obtain how many items there will be, but those items are created in prerender as the controls should be rendered (so you have all the data, but no presentation). I may be wrong however ...
    Posted to Data Presentation Controls (Forum) by donchevp on 11/12/2009
  • Re: Programatically filling a Databound DataList

    Item.Controls.Add(your_control) perhaps? Or something like this. I haven't checked it but I think something like this should work for you. Please consider very carefully the dynamic controls creation as you may find yourself unabled to process events, not receive signals for them etc.
    Posted to Data Presentation Controls (Forum) by donchevp on 11/12/2009
  • Re: Substring

    Why not simply split it? Something like: string[] str = a.Split(new char[] { '+'}, StringSplitOptions.RemoveEmptyEntries) Then each item in the str array would be a number (123, 1234 and so on). Did I got the question? Please let me know.
    Posted to Getting Started (Forum) by donchevp on 8/24/2009
  • Re: Whitespace at the begining of xml file !

    Something like: xmlFormat = GetXmlFormat(fi.FullName); xmlFormat = xmlFormat.Trim(); Please let me know if this helps.
    Posted to XML and XmlDataSource Control (Forum) by donchevp on 8/24/2009
  • Re: Access MasterPage property at Design view

    If you want to change the title of a page (no matter if it has MasterPage or not), you can use the Title property in the page itself. In the markup you can do something like: <%@ Page Language="C#" MasterPageFile="~/MyMaster.master" AutoEventWireup="true" CodeFile="MyPage.cs" Inherits="Page" Title="My Title" %> Note the last property - the Title. But you will still need to open each page in Design or Markup view and manually change
  • Re: Looking 4 Advice

    You put a Windows Media player to play the videos as far as I know it is an ActiveX object and it won't be supported by Safari (or it will have some poor support). What I will suggest is to allow the users to upload videos. Then use some library in order to convert it to flv (you may want to move the conversion on separate box to remove the conversion overheat from the main server), then you can incorporate a Flash player (just look in google for free flash players) to play the movies. To be
    Posted to Free For All (Forum) by donchevp on 8/19/2009
  • Re: basic programing - calling metod from class

    You are quite welcome! About the interfaces - I think it is your solution and it seems to be following the best practices - you will have one interface that will be a marker interface. Something like IParentObject. Then the child class will ask for IParentObject in its constructor. This way you will have the ability to add each one of your 3 parents and implement some more if needed.
    Posted to C# (Forum) by donchevp on 8/18/2009
  • Re: Class library project do not have app.setting file (separately)

    Jimmy, now I know something new :). Thanks for this information. I was wondering what happens if we have 2 or more projects that need to output their App.Config in the bin folder? Currently I don't have such scenario but was wondering what will Visual Studio decide to do in such situation?
    Posted to Configuration and Deployment (Forum) by donchevp on 8/18/2009
  • Re: Looking 4 Advice

    You can let them watch it from internet, you can upload it as any other type, then ask the server to convert it to flv. Then it can be watched through a flash player on your page. Like Youtube for example - you upload some video, they convert it and it is available as flv. The users can watch it. Some of them, using third party tools can download it and convert it to the format they need.
    Posted to Free For All (Forum) by donchevp on 8/18/2009
Page 1 of 23 (226 items) 1 2 3 4 5 Next > ... Last »