Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

AContractor

@AContractor
About
Posts
13
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • three div side by side
    A AContractor

    #left { float: left; } #main { float: left; } #right { float:right; } <div id="left"> </div> <div id="main"> <div id="right"> </div> </div> Try that. I think it will do what you described.

    ASP.NET css xml architecture

  • How solve (Validation of viewstate MAC failed)?
    A AContractor

    This error usually happens when your web app runs on a web farm but the machineKey isn't the same across all servers. Is this an issue in production? Check out this article on MSDN for more info. http://msdn.microsoft.com/en-us/library/ms998288.aspx[^]

    ASP.NET question com algorithms help announcement

  • C# Graph building and visualization
    A AContractor

    If you aren't decided yet on the charting library, check out the Microsoft .Net charting controls. It includes features like clickable areas. http://msdn.microsoft.com/en-us/library/dd456632.aspx[^]

    C# question csharp database data-structures help

  • Best Way to Put Large Video File on Web site
    A AContractor

    Without streaming, the entire video will need to download before it starts to play. I don't understand why streaming is not an option here. It is generally built into the web server. You might not want to host a separate server just to host media content, but streaming should be possible. What type of server is the site hosted on?

    Web Development html adobe sysadmin question

  • bypass login
    A AContractor

    'login' to what? The web application? sql server?

    ASP.NET database csharp asp-net sql-server sysadmin

  • How to create MX Excel file from DataTable?
    A AContractor

    Nope. Excel can open a CSV file directly. :-D

    ASP.NET csharp asp-net com tutorial question

  • ASP.Net website asks user and password continously
    A AContractor

    What browser are you using? If it's IE, try adding the url to the list of trusted sites.

    ASP.NET csharp asp-net sysadmin security help

  • single variable store multiple value
    A AContractor

    True, cookies will not work if the user has them turned off. I think you might need to just come up with a custom solution for this.

    ASP.NET question

  • How to create MX Excel file from DataTable?
    A AContractor

    Take a look at Export DataTable to Excel with Formatting in C#. It should be a good starting point.

    ASP.NET csharp asp-net com tutorial question

  • Serialization and object versioning
    A AContractor

    Have you looked at this article? Version Tolerant Serialization The callbacks should be able to do what you need.

    .NET (Core and Framework) question json help tutorial announcement

  • Creating Stackbased Solutions
    A AContractor

    It sounds like your looking for something like 'Server.Transfer()'. The page executing the incoming request will stop processing and pass control to a new page you specify like a method call.

    .NET (Core and Framework) c++ sysadmin question

  • Asp.net Treeview Control
    A AContractor

    Have you checked MSDN? They have sample code to look through. http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.treeview.aspx[^]

    ASP.NET csharp java asp-net data-structures tools

  • single variable store multiple value
    A AContractor

    Have you tried using a temporary cookies to store each search term submitted to page2? The methods Asp.net uses to store state (viewstate, hidden fields, etc) are generally designed to work with POST requests so I don't think there is any client-side feature that will work. You could also manage a string of submitted requests in javascript but the advantage of the cookie is that all the processing can be done on page2.aspx and return the cookie to the user after each request.

    ASP.NET question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups