The expressionbuilder tag has no wiki summary.
3
votes
3answers
114 views
In Access VBA expression builder, how do I sum a column conditionally?
Let's say I have two fields A and B and one textbox B_input. I would like to set up a query so it sums all entries of column A where B = B_input
Currently I have:
...
2
votes
3answers
1k views
Get value from web.config applicationSettings into ASP.NET markup
I might be completely off track by now, so I will just ask this here so someone can help me.
What I want to do, is to insert a value from my web.config, stored in an applicationSettings area, into ...
2
votes
1answer
138 views
Why does this line of localization behave this way?
I'm localizing an ASP.NET web site. Usually to localize text in an .aspx page I just use
<%= Resources.ResourceFile.ResourceName %>
For asp.net controls, this won't work. I have to use the ...
1
vote
1answer
244 views
ConfigurationManager.AppSettings or only AppSettings?
I have question: when I to use <%= ConfigurationManager.AppSettings["xxx"] %> and <%$ AppSettings: xxx %>.
Sometimes when I use <%= ConfigurationManager.AppSettings["xxx "] %> a I ...
1
vote
0answers
51 views
Create custom expression for localized business content?
In short:
I have an SQL implementation of the IResourceProvider. So:
<asp:Literal id="id" text="<% $ Resources : Common, SomeResource %>" runat="server" />
works and I've created a ...
1
vote
2answers
375 views
ExpressionBuilder return any type of object
The code below works fine for primitive expressions (no surprise there)
public class SiteContextExpressionBuilder : ExpressionBuilder {
public override CodeExpression ...
1
vote
1answer
1k views
What is the escape character for SSIS Expression Builder?
I need to escape quotation marks in SQL Server Integration Services' Expression Builder. I cannot escape it with double or triple quotes.
1
vote
3answers
435 views
ASP.NET ExpressionBuilder syntax - output AppSetting within img tag
I would like to use ASP.NET's ExpressionBuilder syntax to dynamically retrieve domain of static content from an AppSetting.
I am using the following syntax, which does not work:
<img ...
0
votes
0answers
21 views
How do I use Selenium::Client::JavascriptExpressionBuilder in Cucumber step definitions?
I am new at this. Is the following anywhere near the correct usage for find_text_in_element()?
When /^There should be a "([^\"]*)" where the "([^\"]*)" is "([^\"]*)"$/ do |klass, attribute, value|
...
0
votes
1answer
35 views
asp.net expression builder within a larger string
Is there a way to embed an expression builder within a larger string?
I'm trying to create a hyperlink where the URL includes an embedded expression. I tried writing
<asp:hyperlink id="add" ...
0
votes
1answer
171 views
expression builder for XML
In my program I get passed some XML. If values in this XML fulfil a user defined criteria I store the xml otherwise it gets discarded. The problem I have is that I need to be able to allow the user to ...