Questions tagged [asp.net-4.5]

Refers to the version 4.5 of the ASP.NET web application framework introduced with the .NET Framework 4.5

Refers to the version 4.5 of the ASP.NET web application framework introduced with the .NET Framework 4.5

616 questions
0
votes
0 answers

dynamically change css class name

Below is my code:
  • Sankar M
    • 4,549
    • 12
    • 37
    • 55
    0
    votes
    1 answer

    Asp.net Method call after all events have finished

    I have a check box on a page with a server side event that, when triggered, will go to the database to update a value. The check box also causes it's parent check box to become checked, and trigger it's event to update the database. I was wondering…
    0
    votes
    2 answers

    Can Glimpse provide details on ASP.Net 4.5 WebForms model binding?

    The MVC plugin for Glimpse can supply information on model binding that's taking place within a web application. Do MVC and WebForms share the core libraries for model binding, and if so would installing the MVC plugin into a WebForms site: Kill…
    Daz
    • 2,833
    • 2
    • 23
    • 30
    0
    votes
    1 answer

    Conflict between Smartclient classes and webservice classes

    I have created smartliclient and webservices. I have created server with webservices + related classes AND client with desktop application. In smartclient project, namespace and class name is same as there in servver-webservices. Issue in client…
    Abhi
    • 1,963
    • 7
    • 27
    • 33
    0
    votes
    1 answer

    Gridview using model binding not showing newly added items made by a Formview on the same page

    I am current testing out model binding in ASP.NET 4.5. I was testing a formview that accepts data from user and displays the list of data in a GridView below after it was successfully saved. When the data is saved to the list the gridview remained…
    kenalex
    • 61
    • 1
    • 10
    0
    votes
    2 answers

    deploying ASP.NET web applications

    I have a web application created using ASP.NET 4.5 and Visual Studio 2012 on my local machine, which I publish to the development machine that I have access to. We have preprod/staging and production environments for this application, which I don't…
    0
    votes
    1 answer

    paired columns data arranging in asp.net

    **CODE** **TYPE** -------------------- XXOPT POD XXOPT FPOD MSC OPR KLM OPR 40DV SZTP 90DV SZTP MMVD POD KKLP FPOD SSRG FPOD I HAVE A DATA TABLE COMING FROM DATA BASE I…
    0
    votes
    2 answers

    AjaxControlToolkit does not work for pages using MasterPage

    I've been trying to get the AjaxControlToolkit (downloaded from NuGet) version 7.0607 to work for web forms that use a masterpage with no luck. Running DotNet 4.5 The MasterPage has the ToolkitScriptManager on it, but it does not pass down to child…
    MC9000
    • 2,076
    • 7
    • 45
    • 80
    0
    votes
    1 answer

    how to stop update poco class when edmx file update

    I have created one project with asp.net 4.5 and created entity classes with the use of "EF 4.x POCP Entity Generator" Now the problem is i have put some variables in one of the POCO class but as soon as i update the edmx file then those manually…
    vishal
    • 233
    • 4
    • 7
    0
    votes
    1 answer

    ASP.NET 4.5 - Constructor not found when using code-behind UpdateMethod in ListView and FormView

    When developing a Webforms site in Visual Studio 2012, I run into the following error when registering a method to the UpdateMethod parameter of a ListView: Constructor on type 'System.Web.UI.WebControls.ListViewUpdateEventArgs' not found. The…
    user1630889
    0
    votes
    1 answer

    C# Substring() bug in .NET v4.5?

    I'm a little puzzled on why does the Substring() function not working properly. It just won't chopped off the comma at the end of the string. See example code below... public static string OrderByClauseBuilder(string parmSortByColumn) { if…
    fletchsod
    • 3,560
    • 7
    • 39
    • 65
    0
    votes
    2 answers

    click event not needed in .NET 4.5?

    I almost feel bad asking this stupid question, just upgraded to VS2012 from VS2008 and I started out by create a new Web Forms Application, and bang there you go a bunch of files and folders created. When I view the Register.aspx page, there's this…
    Mike Zhang
    • 62
    • 8
    0
    votes
    1 answer

    SignalR Adding/Removing Connections from a dictionary and finding Group values from dictionary

    I have Organizations that login to an asp.net website and when each member logs in I add their ConnectionId and OrganizationId to a static ConcurrentDictionary named OrganizationMembers in a SignalR Hub OnConnected override. I do this so I can send…
    W. Young
    • 357
    • 7
    • 18
    0
    votes
    1 answer

    Linq query to return boolean

    I am inserting data into my entity table using .AddObject(). The object is of the entity table's type. The object is eventStudent, it has string eventStudent.ID, bool eventStudent.StudentPresent, bool eventStudent.ParentPresent. The students are…
    Jazzy
    • 519
    • 9
    • 31
    0
    votes
    1 answer

    Access session object variables from a wrapper class

    I have been using the excellent post referenced here: How to access session variables from any class in ASP.NET? However, I want to store a custom object type in the session, but I'm having trouble constructing the object session class. In the…
    Jazzy
    • 519
    • 9
    • 31