0
votes
5answers
21 views
HyperLink with NavigateUrl with Eval(). Where is a mistake?
First I was changing HyperLink.NavigateUrl in code-behind on Page_Load().
But after I decided to do it in design using Eval() method.
<asp:HyperLink runat="server"
Naviga …
0
votes
1answer
37 views
ModalPopup CodeBehind Function Wait For User Response
I have set up a function which returns an enum of the button that the user clicked in the ModalPopup. I have a variable of type enum to store which button the user clicks in the b …
0
votes
3answers
31 views
How to assign a dynamic resource style in code?
I want to produce in code the equivalent of this in XAML:
<TextBlock
Text="Title:"
Width="{Binding FormLabelColumnWidth}"
Style="{DynamicResource FormLabelStyle}"/>
I can …
0
votes
1answer
32 views
How to bind a Control.Property to a property in the code-behind?
Hello.
I have a TextBox in my WPF window.
I have a property in the code behind called Text as well.
I want the text property to be bound to the Text property (i.e. when the valu …
1
vote
2answers
55 views
Creating a Style in code behind
Hi,
Does anyone know how to create a wpf Style in code behind, I can't find anything on the web or MSDN docs. I have tried this but it is not working:
Style s = new Style(typeof( …
0
votes
3answers
74 views
asp.net code behind variable
I am generating some head html in page load and because of that I query database once. in the page I query database again and put data into html with inline code.
my question is …
0
votes
1answer
39 views
Deploy asp.net application without compiling DLL
When I publish any type of asp.net application, my code is precompiled into various assemblies. I would like to avoid this so that I can upload an aspx page and its corresponding …
1
vote
5answers
88 views
ASP.NET MVC - Code Behind of Master Pages
Hi All,
I am newbie for ASP.NET MVC 1.0. I am converting from a classic application built up with VS2008 .NET3.5. I created a master page, and the menu must be read from the datab …
0
votes
3answers
74 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 pag …
0
votes
1answer
50 views
ASP.NET Include Disables Code-Behind
Hey Everyone,
I've found that when using the
<!-- include file="MyPage.aspx" -->
command in ASP, I'm not able to use the code-behind in MyPage.aspx.
The issue is that w …
2
votes
2answers
94 views
How to add and bind a cs file to an ASCX/ASPX page that doesn’t alrady have one?
I know silly question but i tried looking it up on Google with no luck.
0
votes
1answer
24 views
Localize DNN Site via CodeBehind
Hi,
I've a portal with two different alias, one for eache language:
- en.mysite.com
- it.mysite.com
Now I've the issue to have English language on the first portal and Italian …
1
vote
2answers
57 views
Public Properties in Code Behind of a User Control
In a regular .aspx page, you can access public properties from the codebehind. Is there any way to do a similar thing in a user control. For example, in the following code 'List' …
2
votes
4answers
78 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.) E …
0
votes
1answer
130 views
Access User Control From Code Behind [closed]
I am in a situation where I want to access the property of a usercontrol on my aspx page. I have a property called "property1" defined in the UserControl.
So I want to do somethi …
