CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: d00_ape

Page 1 of 16 1 2 3 4

Search: Search took 0.17 seconds.

  1. Share the App_Themes folder between multiple sites

    We have an ASP.NET 3.5 site that uses themes and skins for handling css and images. Now we are about to create a new site that should have a common look and feel and I like to share the App_Themes...
  2. Re: Split a Web Application into Multiple Projects

    Ok I'll give it a try!
  3. Split a Web Application into Multiple Projects

    When I google the topic I got many suggestions like this one: http://blogger.nilanka.net/2010/08/split-web-application-into-multiple.html

    Is this the only way to do it? We have a big Web...
  4. Replies
    0
    Views
    1,603

    Render a PDF (byte[]) in new browser window

    I have an ASP.NET <LinkButton> and when the user clicks the link I like a PDF from the database as a byte array. What is the cleanest way to show the pdf in a new browser window?

    Do I have to use...
  5. Save a file from ASP.NET down to database and upp again.

    I fore sure have a common task but I need some help in best practice in my topic.
    How should read a file from an ASP.NET site and store it in a SQL Server.

    Should I read it in as a byte[] and use...
  6. SiteMapPath: Don’t show the root level in breadcrumb

    How do I customise the behaviour of the asp:SiteMapPath to not show the root siteMapNode as a part of the breadcrumb.


    <siteMapNode title="Root"…>
    <siteMapNode title="Level_1_1"…>
    ...
  7. Visual Studio Dataset Designer Shows Only Markup

    When I double click an *.xsd file in Visual Studio 2008 I only got the markup code. When I rightclick and choose “View Designer” I only got a blank page. I’ve tried to repair the installation...
  8. Embed image to an e-mail and not a link…

    Is it possible to embed an image to a HTML-formatted e-mail? I don’t want to create a link (with <img src=”http://...”> ).
    I’m creating a newsletter mail application.
  9. System.IO.FileLoadException: Loading this assembly would produce a different grant...

    Anyone ahve any suggestions on what can be wrong when getting this error. I've installed my ASP.NET app on two machines .NET 2.0 and on one of the cpus this error occures.


    Server Error in...
  10. Replies
    3
    Views
    1,014

    Re: Creating email reports with attached PDFs

    But it should be possible to let Reporting Services generate a PDF?
  11. Replies
    3
    Views
    1,014

    Creating email reports with attached PDFs

    I’ll soon enter a project where I’m going to create an “Mail Report Generator”. In our SQL Server database we have a lot of information connected to users to the system.

    Now I’m looking...
  12. Replies
    5
    Views
    887

    Re: Help me with SQL query

    I modified it like this:

    UPDATE MyTable
    SET TypeSymbol =
    LTRIM(
    RTRIM(
    SUBSTRING(
    Name,
    LEN(Name) - (CHARINDEX(',', REVERSE(Name)) - 1) + 1,
    LEN(Name)
  13. Replies
    5
    Views
    887

    Re: Help me with SQL query

    Perfect!!

    Do you have any idea of how to do this in a good way. As you might guess my SQL knowlege is at minimum...
  14. Replies
    5
    Views
    887

    Re: Help me with SQL query

    I'm using SQL Server 2005 but I'll try that!
  15. Replies
    5
    Views
    887

    Help me with SQL query

    I need to populate a new colum with data from one other column in the same table:

    Table Has columns id, name, part:
    Id name part
    "122" "E3, SS, ABC" "NULL"
    "123" "E3, BB,...
  16. Replies
    1
    Views
    4,164

    Start up order of windows services

    How can I set the start up order of windows services (Win 2003 R2)? I have one service that depends on another one to be started
  17. Re: Can’t step into method (debug) with F11 in Visual Studio

    In some way it now work. I restarted VS about 3 times...
    I didn't have any attribute on the method or its class.
  18. Can’t step into method (debug) with F11 in Visual Studio

    I have a project that have a class that I can’t step into a method call with F11 during debugging.
    Any tip what could be wrong?
  19. Replies
    4
    Views
    1,070

    Re: See the execution path of my program

    I'll take a look at log4net and ANTS Profiler.
  20. Replies
    4
    Views
    1,070

    See the execution path of my program

    I’m a new developer in a very complex project. I like to create a program that can plot the methods that is executing in the program to get a fast view of what is calling what. Of course I can...
  21. Replies
    3
    Views
    812

    Optimize this code

    I have a function that very often are called. Any tip on how to optimize this code:


    private static double CalculateDifferance(object from, object to)
    {
    if (typeof(int) == from.GetType())
    ...
  22. Replies
    0
    Views
    834

    Use own columns in VS RESX-editor…?

    Is it possible to add new colums (generating new xml-tag) In Visual Studio resource editor.
    Right now it is possible to have: Name, Value and Comment.
    I like to have a “Comment2 column”
  23. Replies
    1
    Views
    2,300

    Call a server function from javascript

    How can I force a postback and call a codebehind funktion from javascript?
    I want to do something like this:

    aspx-file

    <script type="text/javascript">
    function OnRowSelecting(sender, args) ...
  24. Re: DataColumn.Ordinal is -1 when running my app on one webserver

    I now have noticed that I got the error sometimes when the IIS as made a recycle...
  25. Replies
    5
    Views
    7,072

    Re: Format DateTime to string with no seconds

    ...but when I change the culture of my app I got different results.
Results 1 to 25 of 383
Page 1 of 16 1 2 3 4





Click Here to Expand Forum to Full Width

Featured