Top "Dynamic" questions

Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.

iframe contentWindow throws Access Denied error after shortening document.domain

I create an IFRAME dynamically in the following way: var wrapUpIframe = document.createElement("iframe"); wrapUpIframe.id = 'WrapUpDialog3'; wrapUpIframe.src = …

javascript internet-explorer iframe dynamic access-denied
Differences between ExpandoObject, DynamicObject and dynamic

What are the differences between System.Dynamic.ExpandoObject, System.Dynamic.DynamicObject and dynamic? In which situations do you use these …

c# .net dynamic expandoobject dynamicobject
Deserialize XML To Object using Dynamic

Is it possible Deserialize unknown XML to object like below? var xml = @"<Students><Student><Name&…

c# xml dynamic deserialization xmlserializer
ASP.NET Custom user control to add dynamically

I have hard time to modify a page that had a Custom User Control directly to the ASPX page and …

asp.net dynamic webforms user-controls
How to set dynamic key for READ TABLE?

I'm trying to work out a way to read an internal table that has to be created dynamically. I have …

dynamic sap abap internal-tables
Cursor For Loop with dynamic SQL-Statement

Is there a way to perform a Cursor For Loop with an dynamic SQL-statement? If I don't want to declare …

oracle dynamic plsql database-cursor
dynamic does not contain a definition for a property from a project reference

I am getting an error that says: 'object' does not contain a definition for 'Title' all the code is also …

c# .net dynamic dynamicobject
Pass a TABLE variable to sp_executesql

I'm trying to pass a TABLE variable to the sp_executesql procedure: DECLARE @params NVARCHAR(MAX) SET @params = '@workingData …

sql dynamic sp-executesql
Difference between Object, Dynamic and Var

I need to know the difference between these three keywords Object , Dynamic and var in C#. I have seen this …

c# object dynamic var
Why a Microsoft.CSharp.RuntimeBinder.RuntimeBinderException if the invoked method is there?

I have the following code which creates a dynamic object that is assigned to the smtpClient variable. public class TranferManager { …

c# reflection dynamic anonymous-types