Search

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

Matching Posts

  • Adding back a Button inside an UpdatePanel (programmatically added)

    Hello, I have a button event that won't fire. I guess it's because I have to add the button back during Page_Load but I don't know how to add it back inside the right updatepanel. When I try FindControl at Page_Load it won't find the updatePanel Could someone help me find a way to make that event fire? btccPost.Click += new EventHandler(btnCardChange_Click); For your info : The button is inside a an updatepanel. The updatepanel is inside a panel and the panel is extended by a CollapsiblePanelExtender
    Posted to ASP.NET AJAX UI (Forum) by teebo on 3/27/2008
    Filed under: "Ajax Control Toolkit", "TabContainer", "Update Panel", .FindControl
  • Re: Table control problem, disappear after postback

    Or a quick fix for you would be to rebuild the table. First store the table rows in a session variable and then rebuild. Example : store: IEnumerator tableItemEnumerator = Table2.Rows.GetEnumerator(); re-build : IEnumerator tableItemEnumerator = (IEnumerator)Session[ "tableEnumerator" ]; int i = 0; while (tableItemEnumerator.MoveNext()) { if (i > 0) { TableRow newrow = new TableRow(); IEnumerator tableCellEnumerator = ((TableRow)tableItemEnumerator.Current).Cells.GetEnumerator(); while
    Posted to Web Forms (Forum) by teebo on 1/4/2008
  • Re: CRON job or timer in IIS / ASP.NET?

    What you want to do is write a windows service. It's more powerful than the task scheduler and you can easily set execution permissions to whatever you like. I found this tutorial recently http://www.aspfree.com/c/a/C-Sharp/Timer-Objects-in-Windows-Services-with-C-sharp-dot-NET/
    Posted to Migrating from PHP to ASP.NET (Forum) by teebo on 11/20/2007
    Filed under: ASP.NET
  • Disallowing admin users to delete their site through sharepoint (Hosted environment, HMC4.0)

    Hello, We have a control panel that allows our users to create or delete their sharepoint site. Problem is our customers can still delete their SharePoint sites through SharePoint Administration (" Delete this site ") and so it messes up with our own deletion process. Is there some permissions policies that we could apply to those users from Central Administration so that they cannot delete their sites from SharePoint anymore? I hope someone can point me towards the good direction here
    Posted to Windows SharePoint Services Hosting (Forum) by teebo on 10/29/2007
    Filed under: SharePoint Services, Central Administration, Configuration, wss
  • Re: How to change the Domain Type? (HMC 4 / HostedEmail namespace)

    Thanks a lot Dmitri you get a thank you and a marked as an answer
  • How to change the Domain Type? (HMC 4 / HostedEmail namespace)

    Hello, I'd like to change a primary domain from the Authoritative to the ExternalRelay type but there's no modifySMTPdomain procedure available. I could delete and re-create it but not with business admin permission... Does anyone know a way to either modify a domain type or to allow domain deletion to business admins ??? thanks!
    Posted to Microsoft Provisioning System (MPS) (Forum) by teebo on 9/14/2007
    Filed under: MPS webservice, HMC4 and WbH4.5
  • Re: How to query the DNS Provider on MPS (HMC 4) ?

    Thanks Samuel, How can I use the MPSGeneral Webservice ? Steve mentionned in this post ( http://forums.asp.net/t/1109309.aspx ) that it wasn't included in HMC 4.0 anymore ...
  • Re: How to query the DNS Provider on MPS (HMC 4) ?

    or do I have to develop a .net Remoting client maybe?
  • How to query the DNS Provider on MPS (HMC 4) ?

    Hello, Until now all I needed for my dev tasks was to add the webreferences of the Provisioning Server. But for the DNS Provider, all I have is a DNS Provider component on the MPS (two dlls, a config file, an xml file) and the DNS Provider Client on the DNS Server. We followed all the steps of the configuration guide but now I just don't know how to query the DNS Provider Component. Do I have to create a website on the MPS IIS for the DNS Provider component ? Could someone point me in the right
    Posted to Microsoft Solution for Hosted Exchange (Forum) by teebo on 7/27/2007
    Filed under: DNS Provider
  • how to call a .Net wrapper?

    Hello, I want to submit an XML directly to a .net wrapper, but I just don't how to begin: -There's only a dll in the bin folder of the application pool which I believe contains all the methodes and classes -I have a form which is supposed to submit the xml to the wrapper, but I have no idea of how I could submit it. Could someone point me in the right direction here? Thanks, teebo
    Posted to XML Web Services (Forum) by teebo on 7/26/2007
    Filed under: 2.0, asp.net, asp.net 2.0, C#, C# webService, XML, .NET Remoting
Page 1 of 4 (38 items) 1 2 3 4 Next >