473,785 Members | 3,349 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how can I generate and display in a webform textboxes on the fly ???

Hello over there,
I would like to generate the textboxes on the fly depending on the number of
coulmns in a returning dataset.

I tried something like this :
TextBox temp = new TextBox();
MyPage.Controls .Add(temp);
// <-- the above one failed saying I should specify [run at server] when
this
is already a server comp

Another problem I see is that how can I specify where in the form they
should be displayed ??
Any tip will be very much appreciated,
Thank you in advace,

Genc Ymeri.

Mar 9 '06 #1
1 1304
Generating controls dynamically can be a little tricky. All ASP.NET
controls must reside in a form control. This is rendered for you
automatically (you can see it in the html markup). When you add a
control to the page, you're actually adding it at the end of the
control tree- outside of all other controls, including the form tag.

What you want to do is add a generic control- like a placeholder- to
the page, and then add your textboxes to the placeholder.

placeholder1.Co ntrols.Add(temp );

THis will esnure you're putting it inside the form tag, and it will
also allow you to specify where they show up on the page (because
they'll appear in the placeholder).

As a general best practice, you should always set the ID property of
the textbox.

Secondly, and this is the trickiest part- when you do a postback, you
must make sure all controls are added back to the page in the Init
event. Otherwise, you'll get all sorts of wierd issues like viewstate
errors, etc. If you add three textboxes to the page, send it to the
client- it has to come back the same way. (And by come back, I mean be
constructed in the same way in the Init event).

Mar 9 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1205
by: Scott | last post by:
I have a webform that I would like to use the autocomplete feature for all my textboxes. My textboxes are the <ASP:Textbox /> control. The only way I seem to be able to get autocomplete to work on the text boxes is to have an <INPUT type="submit"> control on my web page and then, after filling in a textbox to have the user hit ENTER (not TAB or clicking out of the box). They then have to tab to the next box, or click over. Of course,...
6
1461
by: Tim Whelan via DotNetMonster.com | last post by:
Hi I am developing an asp.net web application using c# and having trouble trying to display integer values, that I have taken from the database, correctly on my webform textboxes. The values are consistently displayed with four 0?s after the decimal point and I am just wondering if anyone knows how to prevent this from happening. Thanks in advance. Tadhg88 -- Message posted via http://www.dotnetmonster.com
9
12913
by: Peter Afonin | last post by:
Hello: I need to clear all textboxes on the webform after the data has been submitted. How can I do this in one step? I found a C# code: // get a reference to your form control Control frm = FindControl("YourFormID"); foreach(Control ctrl in frm.Controls)
1
1407
by: Boonaap | last post by:
Anyone an idea how to create a Hierarchical data webform? I was trying to figure it out with a datagrid but anyone a better idea? should be C# thx
0
1013
by: Solitus | last post by:
I have a difficult scenario here. Previously I have tried to post something similar here, unfortunately I got no solution. For simplicity I have created something simple to simulate my problem. I have a simple webform that goes, ________________ dropdownlist --> |_____________|V| ______________ text box 1 ---> |______________| ______________ text box 2 ----> |_____________|
4
1884
by: WB | last post by:
Hi, How can I generate web controls such as textboxes and drop-menus on the fly? My web application allows users to fill out PDF forms online. There are many PDF forms, and my application reads the fields in the user's chosen PDF file, displays a webform with relevant fields (textbox or drop-menu or radio buttons etc) for user to fill out online. I'm using a 3rd party software to read and write to the PDF file, but I don't know how to...
1
1372
by: Marc Hoeijmans | last post by:
Hello, Who has a fast and easy solution for displaying an RFT-tekst (stored in a Sql Server databasae) in a webform? Thanks, Marc
1
8419
by: Sirisha | last post by:
Hi, I want javascript for displaying multiple textboxes dynamically. ADD-this is button. if i click button first time it will display 1 textbox and if i click 2nd time it will display another textbox,if i click that button once again display another textbox.if i click 10 times it will display 10 textboxes. so i want code for displaying textboxes dynamically using javascript.
3
2099
by: =?Utf-8?B?UGF1bA==?= | last post by:
Hi I have a webform with several entry boxes and the user enters numbers in each box. I keep a running total (just adds all of the entries together) but am posting back to the server to do this. Is there any way to do it all on the client side, without posting back to the server? I would like to update the running total each time the user inputs an amount in a textbox and then goes to the next textbox. Thanks, -- Paul G Software...
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9947
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7496
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5380
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.