Tagged Questions
12
votes
9answers
5k views
Problem with dynamic controls in .NET
Problem with dynamic controls
Hello all,
I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the ...
7
votes
4answers
304 views
Dynamic form creation in asp.net c#
So, I need some input refactoring an asp.net (c#) application that is basically a framework for creating dynamic forms (any forms). From a high level point of view, there is a table that has the ...
7
votes
4answers
671 views
ASP.NET- forcing child/container events to fire before parent onload?
I'm working on a questionnaire type application in which questions are stored in a database. Therefore, I create my controls dynamically on every Page.OnLoad.
This works like a charm and ViewState is ...
7
votes
3answers
2k views
Is there a way to access a cache or session from a static method?
How would you access the cache from a jQuery ajax call?
I'm using jquery to do some data verification and quick data access. I have a static web-method that jquery is calling via json to return a ...
6
votes
2answers
284 views
Can't Reference Dynamic Objects in Embedded ASPX code
I'm creating a List member variable during my Page_Init event. I'm having a problem referencing the objects in the list from my embedded C# code in the *.aspx page. The error is a Runtime Binder ...
6
votes
4answers
2k views
LoadControl vs Construct ASP.Net Control
I have a question why we can only add dynamic control using LoadControl.
For example:
public partial class wucReportParam : System.Web.UI.UserControl
{
protected void Page_Load(object sender, ...
6
votes
8answers
20k views
Adding dynamic columns to an ASP.NET Gridview
I'm having a problem dynamically adding columns to a GridView. I need to change the layout -- i.e. the included columns -- based on the value in a DropDownList. When the user changes the selection ...
5
votes
3answers
1k views
How can I re-instantiate dynamic ASP.NET user controls without using a database?
I'm currently working with a part of my application that uses Dynamic Web User Controls and I'm having a bit of trouble figuring out the best way to re-instantiate the controls on postback by using ...
5
votes
2answers
14k views
Dynamically change GridView item template
I have a fairly big asp.net website that use GridView bound to the same object in lots of places. I'm using an item template to customize each row. However to have the same template in all the pages I ...
5
votes
9answers
6k views
User Control created dynamically not able to handle events on PostBack
I have a user control which is loaded in the page dynamically using the following code in Init of the Page.
Dim oCtl As Object
oCtl = LoadControl("~/Controls/UserControl1.ascx")
oCtl.Id = ...
4
votes
4answers
166 views
How to dynamically generate textbox and collect data entered by user?
I will appreciate answers in VB or C#
we use a database to create Data Collection forms with dynamic items
I used this code to generate labels and textboxes from a table in database (when the user ...
4
votes
3answers
274 views
Dynamic form with no real OOP or objects?
I am tacking a large refactor of a project, and I had asked this question to confirm/understand the direction I should go in and I think I got the answer that I wanted, which is not to throw away ...
4
votes
2answers
1k views
persistent dynamic control c# asp.net
<asp:Button onclick="Some_event" Text="Add TextBox" ID="id1" runat="server" />
//once clicked:
<asp:TextBox ID="txt1" ......></asp:TextBox>
//when clicked again:
<asp:TextBox ...
4
votes
3answers
498 views
Trouble with FindControl and dynamicly created controls
Example code:
var div = new HtmlGenericControl("div");
div.Controls.Add(new Literal() { ID = "litSomeLit" });
var lit = (Literal)div.FindControl("litSomeLit");
Assert.IsNotNull(lit);
...
4
votes
3answers
1k views
Adding <br/> dynamically between controls asp.net
I'm listing some controls at my web page dynamically, either I'm adding newline with Label's.
Label newLine = new Label();newLine.Text = "<br/>"; myPanel.Controls.Add(newLine);
How can I do ...
4
votes
9answers
294 views
How long is too long for a script to execute?
What is the max time do you think is acceptable for a web script (PHP for example) to execute before it starts to become an annoyance for the user (on average)? I always thought that if the user has ...
4
votes
1answer
535 views
Using Build Manager Class to Load ASPX Files and Populate its Controls
I am using BuildManager Class to Load a dynamically generated ASPX File, please note that it does not have a corresponding .cs file.
Using Following code I am able to load the aspx file, I am even ...
4
votes
5answers
4k views
How to display an ASPX in another ASPX's DIV dynamically at runtime?
Here is what I am trying to do in ASP.NET:
Create one page called Main.aspx. This page has a DIV and a buttons.
The browser loads Main.aspx. Then when I click the button, I want to load page ...
4
votes
4answers
518 views
caching trouble: dynamic css files
I have some css files that need to be generated dynamically (why is complicated, but it's necessary). The easy solution is to change the files to aspx files, and use <%= %> tags as needed to ...
4
votes
5answers
3k views
Dynamic C#.NET Webservice
I am using a class in a C# ASP.NET project to allow a script written in some random scripting language to expose webservice methods dynamically - in other words, the script should be able to expose a ...
4
votes
3answers
4k views
Multiple controls with the same ID 'add0' were found. FindControl requires that controls have unique IDs
Previously Called: How to deal with dynamically created controls under load in aspx
in response to a question below: the information required to determine which controls to restore is contained in a ...
4
votes
3answers
7k views
ASP.NET Multiple controls with the same ID 'x' were found. FindControl
Getting the following error
Multiple controls with the same ID 'ltlItemCode' were found. FindControl requires that controls have unique IDs.
This Error does not happen on page loads but when I ...
3
votes
1answer
65 views
Receiving dynamic object in PageMethod from Javascript
I created a new object() in Javascript, put some values into it and passed it to a PageMethod...
var filters = new object();
filters.Name = $("#tbxName").val();
filters.Age = ...
3
votes
1answer
113 views
Ajax and simple button Event handlers not working
I am running into a problem with Ajax and C# asp.net. I am using Microsoft Visual Studio 2010.
First let me explain my web page.
I have script manager, and directly underneath that I have a update ...
3
votes
1answer
42 views
Previous item.text of the Drop Down List
I am using MS VS 2010, and working on an ASP.NET C# website. I am stuck on something that I think may be quite simple, maybe not though.
Lets say I have a drop down list.
DropDownList ddl = new ...
3
votes
4answers
154 views
How to work with Roles (asp.net) without hardcoding them?
When Roles are created/deleted I wouldn't want to modify the code.
if (HttpContext.Current.User.IsInRole("Super Admin") ||
HttpContext.Current.User.IsInRole("Admin") ||
...
3
votes
4answers
633 views
Dynamic recursive lambda expressions
I want to create dynamic lambda expressions so that I can filter a list using a set of filtering parameters. This is what I have so far:
The expression is built using the methods bellow, where T is ...
3
votes
6answers
433 views
How to pass a html block from code behind(C#) to a javascript function
I am currently working on my final thesis.I have a small problem.I need to pass a HTML block which is a string block to a javascript function.I have to do this from code behind.I have tried it so much ...
3
votes
2answers
529 views
Asp.net dynamic gridview with dropdownlists
I have a dynamic (allows addition of rows on the fly) an ASP gridview that has a dropdownlist in one of its columns. I would like to take an action enable/disable the textbox in the column after ...
3
votes
2answers
748 views
asp.net FindControl Recursively
This is a really weird one - I will do my best to explain.
I have a basic master page:
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="master_MasterPage" %>
<!DOCTYPE ...
3
votes
2answers
218 views
Dynamic ID name in ASP.NET VB.NET
I have about 20 asp:labels in my ASP page, all with ID="lbl#", where # ranges from 0 to 22. I want to dynamically change what they say. While I could write
lbl1.Text = "Text goes here"
for all 23 ...
3
votes
2answers
694 views
Dynamically loading user controls in C# Web Application rather than website
I am trying to create my own website management framework similar to DNN/SiteFinity (only a mucho cut down version).
One of the big (but common) features is to be able to dynamically add user ...
3
votes
4answers
397 views
Webpage navigation with persistance - ASP.NET C#
I have a website that is already completed in ASP.NET. I need to add a section at the bottom that holds a live streaming video chat (Flash Object), and I need it to persist over different page ...
3
votes
3answers
2k views
Accessing controls created dynamically (c#)
In my code behind (c#) I dynamically created some RadioButtonLists with more RadioButtons in each of them. I put all controls to a specific Panel.
What I need to know is how to access those controls ...
3
votes
4answers
733 views
How to create dynamic tables/fields in asp.net similar to phpMyAdmin
I just wanna ask if there's a way in C#/ASP.NET to create 'dynamic' tables/fields similar to phpMyAdmin:
Any suggestions/comments?
3
votes
3answers
966 views
How to get value of dynamicaly added column of datagridview at time of postback!
I have made a one form with functionality to create grid view dynamically.
i have used concept of "how to create template columns dynamically in a grid view"
Link : ...
3
votes
7answers
2k views
How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the code
I have about 600+ references of code similar to the following...
$("#ctl00_ContentMainPane_eliteUser").html
And changed the master template, only to find all the code had broken, due to the control ...
3
votes
2answers
6k views
hw to create line breaks between dynamically generated labels in a placeholder?
This is the code below in code behind file's Page_Load event:
LinkButton linkButton = new LinkButton();
linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + i;
...
3
votes
3answers
9k views
Add Gridview Row AFTER Header
i'm trying to add a new headerrow to a Gridview. This row should appear below the original headerrow.
As far as I know I have two events to choose from:
1.) Gridview_RowDataBound
2.) ...
3
votes
1answer
561 views
How to name fields using Dynamic Linq?
I have a huge query that is being made dynamically, but I want the select statement to not output the column names, buut custom values. FOr example, if I am doing a normal Linq query, I can do ...
3
votes
2answers
5k views
How to create conditional content within a databound Repeater
I'm setting up a User Control driven by a XML configuration. It is easier to explain by example. Take a look at the following configuration snippet:
<node>
<text lbl="Text:"/>
...
2
votes
2answers
122 views
jQuery Autocomplete with C# and SQL Server Database
I am trying to use jQuery autocomplete on my dynamically created textboxes. this is my first time working with jQuery so I am not so sure about where I am getting off...
My ASMX page code is working ...
2
votes
4answers
128 views
Dynamically search database and show results using Javascript and C#
I want to search a database for a clientName and dynamically show the results while the user is typing so they can select a User. It is now my understanding that this cannot be done without using ...
2
votes
1answer
88 views
How to create method for a dynamically added button. asp.net C#
I created a button that is supposed to view a message in a updatepanel.
I dynamically added through code since the ammount of buttons are relative to how many messages they recieve. I need the button ...
2
votes
2answers
112 views
Why can't I add rows dynamically to my HTML table?
I have read many articles so far and tried so many different ways to add rows dynamically to my HTML table, but nothing is working. When I click the add button [ + ], it's not adding a row. For some ...
2
votes
1answer
759 views
The DELETE statement conflicted with the REFERENCE constraint in ASP.NET Dynamic Data
I have two tables Application_User and Application_User_Access. Application_User_Access table is having a foreign key constraint with Application_User table.
When I delete a record in ...
2
votes
2answers
237 views
Use Roslyn to compile Controllers dynamically
With the Roslyn CTP out in the open, we can try to think of cool things we can do with it other than writing c# scripts.
Since asp.net mvc allows you to write custom controller factories, could we ...
2
votes
2answers
155 views
How to dynamically extend C# class with new methods
I'm building a website in ASP.NET that allows creating new modules based on a common class. The new modules need to have the ability to extend the base class with their own library of ...
2
votes
2answers
206 views
Download dynamically generated image from ASP.NET website
I'm dynamically generating image from text, and existing image on my asp.net website.
Here is the code:
protected void Button1_Click(object sender, EventArgs e)
{
var tytul = ...
2
votes
3answers
166 views
Dynamic Drop Down List ASP.net
How can I create a dynamic drop down list without using AutoPostBack. I ask because I just want to change the value of what the second drop down list displays and then the user clicks a button and it ...