Search

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

Matching Posts

  • Re: WebDeploymentProject and signing

    Hi Mike, Thanks for the information about the compilation difference between WAP and WSP! In fact, when I have upgrading from WSP to WAP I have used the beta add-in. With that, I wasn't able to upgrade the master pages files, but only the classes and web forms. So I did it manually. Samya.
    Posted to VS Web Deployment Projects (Forum) by samychu on 4/17/2006
  • Re: WebDeploymentProject and signing

    Hi Mike, Thanks for your reply. I am not using the default WebSite Project, but the add-in for Web Application Project. While creating a project sample to show you the error, I found the problem. In fact, in my web application I used master pages. In the source of the page, the directive should not be: <% @ Master Language ="C#" AutoEventWireup ="true" CodeFile ="Modules.master.cs" Inherits ="Masters.Modules" %> but: <% @ Master Language ="C#" AutoEventWireup ="true" CodeBehind ="Modules
    Posted to VS Web Deployment Projects (Forum) by samychu on 4/17/2006
  • WebDeploymentProject and signing

    Hi, I have a problem signing an assembly that I generate using the web deployment project. Indeed, without signing, I can perfectly generate the assembly, specifying the " Merge all outputs to a single assembly " option in the webprojectdeployment properties. When I add my snk file in the signing option, I get the following error: " aspnet_merge.exe exited with code 1 " I have no idea from what it can come. I've searched on the net, where i found that this error comes when 2 classes are defined twice
    Posted to VS Web Deployment Projects (Forum) by samychu on 4/15/2006
  • Rererencing master pages through web applications

    Hi all, I have several web applications which are used with a main web application. In one web application i implement the master pages i want to use in the pages of my applications (including the main). Since i dont have all my applications in one solution, i want to reference the master pages. I have tried to compile the masters app and have the masters dlls, but then i can't reference the myMasterPage.master in the .aspx pages (and the compiler didn't recognize the ContentPlaceHolderID... I have
  • Re: Implementing the keyword friends in c#....

    Hi, Yes that was my option. I have finally made the method public, and documented the use for the method. Good that you also suggest this solution :-) Thanks.
    Posted to C# (Forum) by samychu on 8/3/2005
  • Re: Why are DataSets inaccessible from another project in same solution?

    Hi, If you just want to create a new typed datatable unlinked to the dataset but with the same schema as yourdataset.yourdatatable, then you could use the method clone() which returns a new datatable with the same schema as the one which you clone: YourDataSet.YourDataTable dt = _yourDS.YourDataTable.Clone(); Hope it helps.
    Posted to C# (Forum) by samychu on 7/29/2005
  • Re: Implementing the keyword friends in c#....

    Hi, Thanks for your reply. Yes it could be a solution, but then the client could specify whatever type it wants... And i agree that checking the call stack is not very performant... Thanks anyway.
    Posted to C# (Forum) by samychu on 7/29/2005
  • Implementing the keyword friends in c#....

    Hi all, I wanted to use the concept of the friends keyword (of c++) in c#, but it happens that it's not available in framework 1.1. So I want to know if it's possible in c# to know the type of the caller of one method. For example: I have two dlls. One called Common and two others called Client1 and Client2. Each Client class has a reference to the Common dll. But I have a method in the Common dll that I want the Client1 to use, and not the Client2. So, since the friends keyword doesn't exist yet
    Posted to C# (Forum) by samychu on 7/27/2005
  • Re: GridView without ObjectDataSource

    Hello, It's very strange, because I've just taken your code and I have tested that as you have told, but it works by me... I can sort, page etc.. And I don't have a blank page while paging... For each PostBack, do you have a select statement in your sqlDataSource? I think you do, because it doesn't change since you don't set it again... Samychu.
    Posted to Data Presentation Controls (Forum) by samychu on 5/5/2005
  • Re: inserting more than 1 record

    Hello, It's the same I think. But haven't tested.
Page 1 of 4 (31 items) 1 2 3 4 Next >