Tagged Questions
The code-behind tag has no wiki summary.
25
votes
17answers
6k views
XAML or C# code-behind
I don't like to use XAML. I prefer to code everything in C#, but I think that I am doing things wrong.
In which cases it is better to use XAML and when do you use C#? What is your experience?
9
votes
3answers
7k views
how to add a code-behind page to a view or partial view
I notice with the latest version of ASP.NET MVC that a View no longer defaults to having code-behind classes.
How do I go about adding a code-behind class now to a View or Partial View??
7
votes
4answers
340 views
WPF: Where does MVVM stop and code-behind begins?
I have created a Window which has a ListView to display a collection of persons. There are also 3 TextBoxes that are supposed to display person's first and last name, and an age. Finally, there's a ...
7
votes
8answers
46k views
Passing arguments to JavaScript function from code-behind
I would like to call a javascript function from an aspx control. For instance, suppose I had:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled ...
6
votes
8answers
204 views
Events rather than Commands in MVVM?
It is often specified in the various tutorials of MVVM, that the goal of MVVM is not to eliminate the code-behind and that some event-handling may still be necessary in the code-behind.
What are the ...
6
votes
2answers
2k views
C#: How to convert a Website project to a Web Project
UPDATE: All of these problems was for converting a Website application to a Web Project in Visual Studio. Once I dug in and I found the solution, as I marked as answer below.
Basically, if you are ...
5
votes
4answers
9k views
Adding css class through aspx code behind
I am using aspx. If I have HTML as follows:
<div id="classMe"></div>
I am hoping to dynamically add a css class through the code behind file, ie on Page_Load. Is it possible?
Thanks ...
5
votes
3answers
5k views
Disabling all but one child control in a WPF window
I have a bunch of controls on my window. One of them is a refresh button that performs a cumbersome task on a background thread.
When the user clicks the refresh button, I put the cursor in a wait ...
5
votes
2answers
1k views
Creating a XAML Resource from Code Without a Key
Is there a way to add a resource to a ResourceDictionary from code without giving it a resource key?
For instance, I have this resource in XAML:
<TreeView.Resources>
...
4
votes
8answers
1k views
ASP.NET - Inline vs. Code-Behind
I realize that by asking this question, I could have started the apocalypse, but a colleague of mine uses a lot of inline coding in their aspx pages, where as I prefer using the code-behind.
Is there ...
4
votes
4answers
917 views
ASP.NET MVC Views - Can I use code-behind
I am new to MVC and I notice that the view pages can look pretty nasty with all the intermixed script tags. Does it make sense to generate the HTML in a method in the view code-behind and then just ...
3
votes
4answers
201 views
Opposite code behind in Flex
Why in Flex the code behind pattern is using the Actionscript class as a base class instead of using the MXML component for that?
I mean, instead of extending our AS3 code behind class, why we don't ...
3
votes
1answer
1k views
How to add a GridView Column on code-behind? ASP.NET C#
I'm trying to add a column to a GridView, in ASP.NET 2.0
gridViewPoco.Columns.Add(...)
However, i cant find the right option. I'd like equivalents to the following:
<asp:BoundField>
...
3
votes
4answers
250 views
Databinding to CLR property in code-behind
Binding to a Dependency Property is easy in code-behind. You just create a new System.Windows.Data.Binding object, and then call the target dependency object's SetBinding method.
But how do you do ...
3
votes
5answers
412 views
What do people call aspx files to distinguish them from aspx.cs/aspx.vb code-behind files?
In the "code-behind" style of ASP.NET programming, you split your code into two different files, an .aspx file and an aspx.cs file. (That's for C#; for VB, it's aspx.vb instead.) Everyone seems ...
3
votes
3answers
2k views
WPF C# MVC/MVP pattern and user control code-behind
I am developing a large-ish application in WPF/WCF/NHibernate/etc. and have implemented the MVP pattern (although this question is still relevant to MVC) as the core architecture.
It feels quite ...
3
votes
1answer
1k views
Get the Style of a Control {StaticResource {x:Type TextBlock}} in code behind
I want to grab the default Style for a TextBlock in code behind without ever having adding a custom default textblock style to resources in xaml
I've got a method like this:
public TextBlock ...
3
votes
2answers
581 views
What's the difference between web services and calling code-behind with ajax?
Is there any difference in using one over the other?
Should I be retrieving data from a database using web services? Or is it better to call methods from code-behind (or somewhere similar) with ajax ...
3
votes
5answers
13k views
Asp.Net (vb) Force Postback in code-behind
I'm in need of a way to force a postback or page reload in codebehind. Tried using some javascript but didn't get it to work. Browsing the net I see the first question is "why"?
Circumstances are ...
3
votes
5answers
3k views
Convert a single file aspx to code behind
I'm working on a web site (not a web application) in VS 2008 .Net 3.5 and it uses the single file .aspx model where the server code is included in the head portion of the html instead of using a ...
3
votes
4answers
796 views
Can PowerShell be used as code behind for WPF
We can use [Windows.Markup.XamlReader]::Load to load XAML file in PowerShell, but is there some way to specify some PowerShell script as code behind?
3
votes
4answers
479 views
is “non-intrusive code-behind” a good or bad practice?
I am a bit surprised that while learning WPF/XAML/Silverlight almost all of the XAML/C# examples I have encountered have the "Click" events in the XAML and very few in the Window or Page constructor.
...
3
votes
6answers
3k views
How to get a 'codebehind' file for an ASP.NET-MVC View in RC1 to be created by default
In RC1 the behavior of the template for creating a view changed.
As explained by Scott Gu's post about the release candidate a newly created aspx view doesn't have a code-behind file by default ...
3
votes
6answers
3k views
ASP.NET MVC RC - Creating a MVC User Control with a codebehind
Trying to create a MVC User Control in the Release Candidate and I can't see to make one with a codebehind file. The same is true for MVC View pages.
Creating Views in the Beta would produce ...
3
votes
7answers
15k views
Call function in User Control from code behind of the page
Now this is all way simplified, but here goes:
I have a User Control that consists only of a single *.ascx file. The control has no code-behind: it's just a script with a few functions, like this:
...
2
votes
4answers
95 views
How can I put a jQuery function into my code behind?
I have the jQuery function below (Show_popupWindows) :
$(function () {
var popupWindows_Done = $('input[type="hidden"]#hfpopupWindows_Done').val();
...
2
votes
1answer
87 views
Add a control using XAML but instantiated using code-behind
I'm trying to understand how XAML and code-behind talk to each other. I know that code-behind can access an element instantiated in XAML using the Name attribute eg:
Instantiate the button in XAML:
...
2
votes
2answers
212 views
Inject <script> tag into <head> in code behind
I need to find a global way to inject a <script> tag into my pages directly within the <head> tag from the code behind. Is there something I can do in the global.asax? If not, all my ...
2
votes
6answers
506 views
Windows form/WPF too large, how can i split it up?
I'm about to create WPF application. So far at uni the only way we have ever done GUIs is to have one main window with one code-behind file for handling its button clicks etc..
My issue is that as ...
2
votes
1answer
43 views
Obscured URL in ASP.Net Webforms
I am working on a ASP.Net web forms application which I inherited from a programmer who has already left the company a few months ago.
The application is deployed in our intranet servers and user ...
2
votes
3answers
464 views
No code-behind fields for server controls in ASP.NET design in Web App
I created a New Web Site in Visual Studio 2008, added a page with a control on it:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
2
votes
5answers
2k views
Open new window from code-behind
I need to open a new window from code-behind on post-back if a specific radio button is selected.
Is there any way to do this?
Thank you.
2
votes
2answers
855 views
Converting from VS 2008 Web Site to Web Application Project
I am in the process of converting a VS 2008 Web Site to a Web Application Project. I have followed the instructions on the MSDN site but am now getting a whole bunch of weird errors. I should ...
2
votes
2answers
884 views
How to exclude ASP.NET web site code-behind files from compile?
I am refactoring a stack of ASP.NET pages. I'd like to compile and test the ones I've completed. However, Visual Studio won't let me run the Web Site with compile errors on the non-refactored pages. ...
1
vote
3answers
43 views
Need to execute code behind on a regular hyperlink
I have a strange situation. I have a website where hyperlinks are dynamically generated (as user controls) which have the target attribute set to _blank as I need it to open in a new window. Due to ...
1
vote
1answer
234 views
Having codebehind for Custom .aspx page in sandbox solution
I am having working with sandbox solution. i have one .aspx page in my solution and i have placed one button tag in that page, i need to write server side code for that button. But it is showing "The ...
1
vote
1answer
28 views
Are there any difference between aspx and code behind when assigning text values asp.net 4.0 c#
This is code behind assigning aspx.cs
if (srLang == "tr")
{
lblUnWantedPrivateMessages.Text = "Özel Mesaj Almak İstemediğiniz Oyuncular";
lblPmBlockUserNameTitle.Text = ...
1
vote
2answers
375 views
breakpoints in code behind not hit
common problem I guess, but no solution has worked so far:
my breakpoints (asp.net 2.0) get hit nicely in "backend" assemblies but not
in the code behind.
i can even see the
<% ...
1
vote
3answers
442 views
Referencing code-behind properties on .aspx page?
On a .aspx page, what is the best way to link a server control's property to a property of the page class (its code-behind)? The only way that I have read about is to use databinding:
...
1
vote
1answer
213 views
How to Assign a Datasource to a Checkboxlist in an ITemplate
I'm trying to assign a Datasource to a Checkboxlist inside template for my DetailsView control.
private class membershipChkLst : ITemplate
{
private CheckBoxList chk_lst_Members;
public ...
1
vote
1answer
828 views
How Do I Make a TemplateField with Checkbox Through Code-behind?
How can I add a template field with a checkbox to my DetailsView object through C# code-behind? I'm having trouble figuring it out from reading the asp.net code.
I already have the TemplateField and ...
1
vote
2answers
265 views
ASP.Net Code Behind design
I am creating a small asp.net application which contains several .aspx pages.
I am not sure about the way to design my code behind (c#).
Example:
Lets day I have a web page that loads books from DB ...
1
vote
0answers
150 views
UTF-8 character in code behind
I have a web site and it has some words with Turkish characters (ü,ş,ö,ç). There is no problem while is viewing, but when I want to use the words in the code behind for example ...
1
vote
3answers
187 views
Business Layer/Code-Behind Performance Question
I was wondering if anyone knew if there was a performance boost of any kind in C#/ASP.NET due to moving database calls from the code-behind to the underlying business logic class library.
My ...
1
vote
3answers
625 views
ASMX Web Service online works when all of the code is in one file without code-behind
I have an ASMX Web Service that has its code entirely in a code-behind file, so that the entire contents of the .asmx file is:
<%@ WebService Language="C#" ...
1
vote
1answer
1k views
Show CreateUserWizard's error message label
I've got a CreateUserWizard control and am performing server-side validation. Is there a way to force the CUW's error message to display from the code-behind? At the moment, if the user enters a ...
1
vote
1answer
444 views
VS2008 Keyboard shortcut open Code in front
This is probably a total newb question but does anyone know how to make the 'F7' keyboard shortcut in VS2008 open the code-in-front page in source view rather than design view?
Thanks.
1
vote
2answers
378 views
How to unanimate WPF DependencyProperty?
After running WPF animations on dependency properties in code behind, the dependency properties can no longer be set using SetValue. They can only be changed through animations.
I want to change a ...
1
vote
3answers
488 views
Is it possible to create an instance of an ASP.NET page within another page's code-behind?
I have an .aspx page that I am using to handle the layout of an order receipt. I don't ever want the user to actually go to the page, I just want to populate the fields on the page and then render ...
1
vote
3answers
456 views
How do i add a second code behind file to a xaml file?
In visual studio i want to add a second code behind file to a xaml window (my main form). i know i can have another (or as many) files that form partial parts of a class, and if they are in the same ...