Search

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

Matching Posts

  • masterurl token not working, can't load type, and other mysteries of deploying an ASP.NET app under Sharepoint

    I am trying to deploy an ASP.NET application under Sharepoint, and am getting stuck in two places. (I am working off the suggestions in an article I found on CodeProject called "Converting an ASP.NET site into a SharePoint site" by srivatsan24.) 1. Begin with my existing project. Generated a strong name keypair with sn.exe and used that in the Signing tab of Properties. 2. Add Web Deployment Project. Selected these options: "Merge all outputs to a single assembly" "Enable
    Posted to VS Web Deployment Projects (Forum) by Chris.S on 6/25/2009
    Filed under: Web Deployment Project, ASPNET, "master page", Sharepoint
  • Web Deployment option missing?

    I have an ASP.NET 3.5 project that I would like to move into Sharepoint. I have read that the way to do this is to begin by creating a Web Deployment Project. I have VS 2008, so I downloaded the latest WebDeploymentSetup.msi (signed 1/18/2008) and ran it. The "About" window in VS tells me that I have VS 2008 Pro version 9.0.30729.1 SP, wih .NET Framework 3.5 SP1, a lot of hotfixes, and the last thing is "Web Deployment Projects 2008 000000" 9.0.21022. So it seems like it's
    Posted to VS Web Deployment Projects (Forum) by Chris.S on 6/22/2009
  • Cryptographic failure while signgin assembly

    Using the Properties > Signing tab of my main project, I created a pfx file. Then I did "Add Web Deployment Project" and in it's Properties window, I turned on "Enable strong naming", and gave it the key file (pfx) that I had just generated. Attemping to build the deployment project results in Cryptographic faliure while signing assembly. C:\Windows\Microsoft.NET\Framework\v2.050727\Temporary ASP.NET Files\my.csproj\341......\App_global.asax.dll -- 'Bad version of provider
    Posted to VS Web Deployment Projects (Forum) by Chris.S on 6/22/2009
  • Re: Cryptographic failure while signgin assembly

    It seems there is a bug in VS 2008, because I worked around the problem as follows. I invoked "sn" from the SDK command line, and created "snk" files that way (rather than using the GUI and creating a "pfx" file). I was then able to use that keypair snk file in the Signing tab of the Web Deployment Project without any error.
    Posted to VS Web Deployment Projects (Forum) by Chris.S on 6/22/2009
  • Re: GridView caption

    I am using FF 3.0.10 I hope there is a way to force it. Or else some other way to put a caption thingie of some kind on the table. (I was previously putting a Label directly before the GridView, but now I am sometimes setting the GridView invisible, so that's no good.) Maybe there are other HTML thingies that can go on a GridView somehow?
    Posted to Data Presentation Controls (Forum) by Chris.S on 5/21/2009
  • GridView caption

    GridView has a Caption property that I can set to label the table. By default, the location of the caption is browser-specific, but you can set CaptionAlign to Top, Bottom, Left, or Right. On Firefox the default seems to be Top. I want the caption on Top, but I also want it at the left edge of the table. "Top" centers it. The answer is not "Left", which shifts everything so that the caption and the table are side by side!
    Posted to Data Presentation Controls (Forum) by Chris.S on 5/21/2009
  • Checkbox/mark or nothing

    I have Checkbox that wants to be ReadOnly, so I accomplished that by setting Enabled to false, and Checked to the Eval of the data (column). What might be even nicer is a checkbox or a checkmark glyph that is present when the value is True, and have nothing appear in that column when it's false. I guess I am looking for three things: 1. A way to make a checkbox, or any other control, disappear when it's value is something in particular (eg. when it evaluates to False). I guess this would
    Posted to Data Presentation Controls (Forum) by Chris.S on 5/20/2009
  • Re: want empty rows, not duplicates

    [quote user="Chris.S"]This may be a dumb question but it has me stumped! Thanks! [/quote] Well, given that everyone says it's impossible to do, and the only suggestion is to redesign the tables to simply contain the desired result in the first place, I guess I don't feel so bad about being stumped. But it's hard to believe that it's impossible. I will look into coding a solution that does not use SQL, I guess. Leaving this open in the meanwhile on the hopes that someone
  • want empty rows, not duplicates

    How can I do the following in SQL? JOBS ====== pos job --- --- 1 plumber 2 plumber 3 carpenter PEOPLE ====== Name Job ---- --- Joe plumber Frank carpenter RESULT ========= pos Job Name -- --- ---- 1 plumber Joe 2 plumber VACANT 3 carpenter Frank My problem is that a LEFT OUTER JOIN on the job will give this: WRONG RESULT ========= pos Job Name --- --- ---- 1 plumber Joe 2 plumber Joe 3 carpenter Frank How do I join these tables so that rows from PEOPLE are only used once in the result, and that some
  • ListView summary row

    I have a ListView with an ItemTemplate that calls <%# GetGroupHeaders(...) %> which returns some table rows (TR) sometimes. (This is the standard trick for injecting group headers into a ListView or other control, by noticing when the column changes value.) So my LayoutTemplate defines the table and a row of column headings, and has <asp:PlaceHolder ID="itemPlaceholder" runat="server" /> which does all the work. I want to add a final row to the table that has the summary
    Posted to Data Presentation Controls (Forum) by Chris.S on 5/1/2009
Page 1 of 2 (16 items) 1 2 Next >