Tagged Questions
The inline-code tag has no wiki summary.
13
votes
5answers
373 views
Why there is no standard way to force inline in C++?
According to the wikipedia C++ article
C++ is designed to give the programmer choice, even if this makes it possible for the programmer to choose incorrectly.
If it is designed this way why ...
8
votes
3answers
408 views
C++'s “inline” - how strong a hint is it for GCC and Clang/LLVM?
In C++, the keyword "inline" serves two purposes. First, it allows a definition to appear in multiple translation units. Second, it's a hint to the compiler that a function should be inlined in the ...
8
votes
3answers
796 views
Is it bad practice to write inline event handlers
Is it bad practice to write inline event handlers ?
For me, I prefer use it when I want to use a local variable in the event handler like the following:
I prefer this:
// This is just a sample
...
8
votes
2answers
554 views
Can I use Extension Methods inline in an ASPX page?
Is it possible to do something like this inline in an ASPX page?
<%= Me.SomeExtensionMethod() %>
I can't seem to figure out how to get this to work properly. I'm receiving an error saying ...
6
votes
3answers
108 views
Compiling Ruby Inline C code - resolving errors
I am trying to get this Ruby inline C code http://pastie.org/2825882 to work. The code works in vanilla C, but here I get errors and warnings. What causes this error?
./backtrack_inline.rb:67: ...
4
votes
2answers
159 views
Concatenate two or more strings in inline code ASP.NET
I am trying to place a * next to the name based on a condition.
My code :
<asp:Label ID="lblOne" runat="server" Text= '<%# Eval("name") + ((Eval("StatusId").Equals(0) && ...
4
votes
1answer
127 views
PyCUDA: C/C++ includes?
Something that isn't really mentioned anywhere (at least that I can see) is what library functions are exposed to inline CUDA kernels.
Specifically I'm doing small / stupid matrix multiplications ...
4
votes
5answers
375 views
Tool to convert inline C# into a code behind file
I have a number of legacy web controls (ascx) that contains huge amounts of inline C#. The forms contain a number of repeated and duplicate code. Our first plan is to move the code into code behinds ...
4
votes
2answers
539 views
Is there any way to declaratively pass code-behind property values to server controls?
Can anyone explain why you can’t use inline code blocks within server control declarations in ASP.Net?
The following is a simple example...
....
<form id="form1" runat="server">
...
3
votes
3answers
90 views
What C# types can be accessed from ASP .net?
Let's say I have a class called ApplicationSettingsManager, and I have a String that needs referencing from Javascript on my ASP .net page, I have done the following:
...
3
votes
4answers
157 views
Calling the original Page_Load fuction from inline code
I like to Monkey patch a ASPX website so that I can add stuff to the Page_Load method within a compiled assembly.
My first thought was to add a script tag containing a second Page_Load method to the ...
3
votes
4answers
302 views
Alternatives to C “inline” keyword
From my course instructor, he has repeatedly emphasized and asked us not to use the "inline" keyword for functions. He says it is not "portable" across compilers and is not "standard". Considering ...
2
votes
5answers
147 views
Workaround for ParseControl not supporting inline code blocks?
I'm using the ParseControl method in ASP.Net to render some mixed HTML and server control code which is coming from an external data source.
This is working well, however ParseControl does not seem ...
2
votes
3answers
126 views
Old ASP.NET webform has some inline code getting encoded :(
I've got a ASP.NET webforms site with some inline code on a master page ..
<meta property="og:title" content="<%=HeadTitle %>"/>
but it's rendering that line as..
<meta ...
2
votes
4answers
112 views
onclick=“” vs event handler
I've been puzzled by this question for some time, if I want a function to be executed I prefer the method of
<p id="element" onclick="doSomething();">Click me</p>
However, about ...
2
votes
7answers
256 views
Use temp variable or inline in this example?
I'm loading an ASP.NET dropdown list.
Is there any advantage to doing this::
Private Sub LoadSeasonsListbox(ByVal seasons As List(Of Season))
Dim li As ListItem
For Each s As Season ...
2
votes
2answers
624 views
Using python scipy.weave inline with ctype variables?
I am trying to pass a ctype variable to inline c code using scipy.weave.inline. One would think this would be simple. Documentation is good when doing it with normal python object types, however, they ...
1
vote
1answer
48 views
inline PHP stopped working with if function and javascript
I've had a wordrpress site working for about 2 years using a pluggin called Inline PHP. This is a shortened version that used to work:
<exec>
$levels = array('Level 3','Level 1','Level 2');
...
1
vote
2answers
44 views
How to create a static library in Visual Studio 2008 with inl files?
I am compiling a static library from a project that contains .h files for the interfaces and .inl files for the implementation and Visual Studio 2008 is not generating a .lib for me, what is the ...
1
vote
2answers
91 views
calling a javascript function from the inlinecode aspx
I have the working code pasted below which has a function called FormatStatus() as part of inline code and the actual definition is in the code behind (C#). My question is if I move the function ...
1
vote
2answers
61 views
populate lable control inside a gridview based on inline Conditional statement
I am trying to display a plain text in the column(contains a label) of gridview based on a condition. Here is my erroneous code. Please correct.
<asp:Label ID="lblAsgn" runat="server" Text= ...
1
vote
3answers
34 views
Method doesn't exist if declared in the page
I have a page defined as:
<%@ Page Language="C#" %>
<html>
<head>
<title>Untitled 1</title>
<script type="text/c#">
public void WriteHello()
{
...
1
vote
2answers
169 views
inline code on server control properties
I have a public POCO property (SiteDetail) on my page and I need to know what's the best approach when setting properties of server controls:
Use inline code and Page.DataBind(); on load
...
1
vote
2answers
260 views
Using inline C# code with serverside html tags
is it possible to use inline c# code (i.e. <%# someFunction(someParameter) %>) in serverside html tags? The reason I ask is that I do this sort of thing with a regular <div> tag and it ...
1
vote
5answers
141 views
How to use inline JavaScript in HTML?
Support that I have this hidden field:
<input type='hidden' id='handler' name='handler' value='5534882394' />
And imagine that I fetch an HTML fragment from server via jQuery AJAX.
<div ...
1
vote
2answers
76 views
multiple statments in inline c# on and asp.net page
I have the following line in my aspx file:
<asp:Image ID="Image1" runat="server" ImageUrl='<%# MediaHelper.GetMediaUrl(Container.DataItem) %>' Height="114" Width="152"/>
Is it possible ...
1
vote
0answers
137 views
Adding custom attribute to a class defined in asp.net inline code
I have an asp.net page that is already written with inline vb.net. All I really need to do is add a custom attribute to the class but it can't figure out where to add it.
<%@ Page ...
1
vote
2answers
67 views
How bad it is - Inline js calls with external handlers definition VS totally external js
I run into following code in my project:
html:
<input type="button" id="addmore" value="Add more" onclick="add_table(this)"/>
js:
function add_table(elem){
var current_id = ...
1
vote
2answers
297 views
Embed php js html code in tinymce, posible?
I have been looking a lot for it but haven't found anithing...
(i want just some editor -i know the same it's hard to get done- like the one i'm using now, where i can share my code in my blog)(My ...
1
vote
3answers
399 views
Use javascript variable into inlined code
How can I call a .net method in inline code using a javascript variable?
My code looks like this:
for (var i = 0; i < numberIterations; i++)
{
var result = <%# GetFilterTagURL( ...
1
vote
2answers
129 views
inline functions returning incorrect results
I have a large application that I am working on in C++, and we have a class where the inline functions are returning the wrong value. It looks like they are offset by one entry.
Here is an example of ...
1
vote
5answers
274 views
Mixing javascript and inline server code
I am trying to do the following:
<script>
var documentId = %(this).attr('id');
<% int docId = %>documentId<%;%>
</script>
As you can see, I'm trying to ...
1
vote
5answers
142 views
Any suggest to store a value in a lambda expression
I'm trying to write an in-line function for count occurrences of a word in a string using lambda expressions recursively.
The function:
Func<string, string, int> getOccurrences = null;
...
1
vote
2answers
102 views
Eval inline ruby inside a markdown document
I need to call some helpers from a Markdown view. Is this somehow a good practice and is generally supported on popular ruby-based Markdown parsers?
1
vote
4answers
361 views
Multiply defined linker error using inlined functions
The linker is reporting multiply defined errors for an inline function.
I have the following code in a header file:
struct Port_Pin
{
volatile uint32_t * port_addr_set_value; //!< ...
1
vote
4answers
385 views
QueryString problem in .aspx - prints out nothing
I need to print out the querystring value "?type=xxx" inside my .aspx-page, why doesn't this work:
<%= Request.QueryString("type") %>
While this does:
<%= Request.QueryString(0) %>
...
1
vote
2answers
137 views
Is there a better, less cumbersome way to extract text inline than <%= %>?
Let's say I am working in a .aspx page (or View, for the MVC folk) and I have a block of inline code:
<p>Some HTML and content</p>
<% foreach (var x in foo) { %>
<%= ...
1
vote
3answers
4k views
asp.net inline code <%# MyboolVal %>
I must be missing something stupid here but I can not see it. My work uses inline code on their sites, for example:
<panel runat="server" id="myid" visible='<%# MyboolVal %>'>
some ...
1
vote
5answers
2k views
Inline Code on Webform Property
Why doesn't this display the date/time when rendered?
<asp:Label runat="server" ID="test" Text="<%= DateTime.Now.ToString() %>" ></asp:Label>
Is there anyway to make this work?
0
votes
3answers
59 views
How do I reference a property in Global.asax from .aspx page?
The name 'Global' does not exist in the current context
I'm getting the above error when trying to reference a property I've created in Global.asax:
public static String ThemeColor
{ get; set; }
...
0
votes
1answer
57 views
Add div conditionally says The name container does not exist in the current context
I want to add HTML div conditionally in rotator control. I am using the following code but it says "The name container does not exist in the current context" at DataBinder.Eval(Container.DataItem, ...
0
votes
2answers
42 views
Is it possible to insert in-line javascript code into another javascript/jquery code?
This question looks a little dumb... but I am wondering if is it possible to insert in-line javascript code into another javascript code. Lets put this clear:
I'm trying to put a google plus button, ...
0
votes
1answer
79 views
writing a inline as3 function and having problems accessing variables outside of function
I'm writing a inline function in AS3 as a Event handler for a Loader class, the issue I having is that in this inline function it needs to access variables outside the scope of the function.
Here's ...
0
votes
2answers
51 views
C# code in ASP.NET control property
I would like to write some code in an asp.net Button Text property. Is this possible?
This is how I tried it, but this doesn't work
<%
foreach (Reference reference in allReferences)
{
...
0
votes
3answers
72 views
Calling function in usercontrol inline code doesn't always work
I have constructed an ASP.NET user control "Box.ascx" wtih the following code.
<div id="divContent" runat="server" visible='<%# AllowedToView(this.Privacy) %>'>
Content
</div>
...
0
votes
2answers
81 views
Inline Code in markup page in ASP.NET Webforms?
Is something similiar to the following pseduocode possible on server side controls?
<asp:Label runat="server" ID="lbl" Text=<%=DateTime.Now.ToString(); %> />
I.e. assigning attributes.
0
votes
1answer
83 views
asp net inline label text vs label control
to paint labels on an asp .net webpage, is it better to use inline code like:
<div><%$ Resources:TextResource, Name %></div>
or set it as a label property like:
...
0
votes
0answers
47 views
How to convert dynamic inline javascript to event handlers in an asp.net repeater
In order to better sepparate structure from behaviour, I would like to convert inline javascript written out by an asp.net repeater to event handlers specified in an external file.
Eg.
...
0
votes
2answers
100 views
asp.net databind expression not evaluating
The following code:
aspx file:
<div id="challengedIndependence" class="collegeAccentBlock grid_8 push_1" runat="server" clientidmode="Static" style='display:<%# testMethod %>' >
...
0
votes
1answer
87 views
Link Error when using inline math library in combination with precompiled header file
I came about a rather weird problem today. I have a math library optimized for SSE, therefore almost all functionality is declared as inline. For simplification purposes I will only explain the ...