all groups > asp.net webcontrols > july 2003 > threads for july 29 - 31, 2003
Filter by week: 1 2 3 4 5
Dynamic controles
Posted by jan v at 7/31/2003 5:14:37 PM
hi,
im trying to get a dynamic questionnaire running on asp.net. But i get a
stack overflow exception.
this is my code, in the tblQuestions datatable there are only 4 datarows.
foreach (DsQuestionList.tblQuestionsRow dr in
this.dsQuestionList.tblQuestions.Rows)
{
Questions q = new Que... more >>
Custom WebControl.
Posted by George Ter-Saakov at 7/31/2003 11:20:41 AM
Hi. I am writing my own Validation control to validate the length of the
inputted string. Use RegExp seems to me an overkill for such simple task.
Anyway I declared my control as
public class GLengthValidator : WebControl, IValidator
Then I overwrote the Render method
protected override... more >>
Caching of dynamic loaded usercontrols
Posted by Sven Schimmel at 7/31/2003 9:05:12 AM
Hello,
I load usercontrols dynamically and bind them to
placeholders, depending on the querystring. If I add an
Caching-Tag in the UserControl I load dynamically I get an
error. Is there a way to cache dynamic loaded usercontrols
like a Usercontrol which displays the news.
Thanks for y... more >>
Help: Requiredfield validator
Posted by Sean at 7/31/2003 8:40:00 AM
Hi,
I have 2 buttons A and B, textbox C and dropdown list D. When A is clicked,
C is required field. When B is clicked, C and D are required fields. There
is a dummy entry "please select" in the dropdown list. When B is clicked, D
can't be the dummy option.
I wonder what is the best practic... more >>
Web Controls not displayed
Posted by Andy at 7/30/2003 7:22:04 PM
When I run my ASP.NET application, the web controls (e.g.
buttons, calendar, radio button) are not displayed on the
page. I do see text, however. Any ideas what is causing
this?
Thanks in advance.... more >>
drag and drop in a custom web control
Posted by Khoi Pham at 7/30/2003 1:26:14 PM
Hi all,
I wrote a custom web control that exposes two panel controls as public
properties.
I would like them to support drag and drop funtionality in design mode.
Is there an attribute setting that will allow this to work?
Thanks,
-Khoi
*** Sent via Developersdex http://www.develop... more >>
custom layout : RadioButtonList
Posted by Christian H at 7/30/2003 3:05:27 AM
Hi!
I'm wondering how I can add extra html to a radiobuttonList, so that I can
control how:
-the whole radioButtonList is rendered.
-each of the radiobutton elements are rendered.
What I am basically trying to do is to combine x radioButtonlists, so that
the output will look like this:
--... more >>
nested Datagrid
Posted by MS.Joo at 7/29/2003 11:29:58 PM
I must handle below data layout.
column1 column2 column3 column4
--------------------------------------------
a1 'Nested DataGrid' c1 d2
--------------------------------------------
a2 'Nested DataGrid' c2 d2
-------------------------------------------... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Text returned from a textbox.
Posted by Gary Monk at 7/29/2003 7:24:15 PM
I have a strange problem, I think. I have a web page with
a text box. In the page load function I set the Text
property to a value (the value is received from a SQL
query).
The user is able to change the value in the textbox on
the web page. When the user clicks on the save button I
up... more >>
TreeView control not working with SSL
Posted by Thomas Connolly at 7/29/2003 2:41:57 PM
Can anyone tell me how I can get the Internet Explorer
TreeView control to work in https (SSL). It won't
render. It gives an error message saying "The data at the
root level is invalid".
Thanks in advance,
Thomas... more >>
treeview.htc - Class not registered
Posted by Chris... at 7/29/2003 2:11:40 PM
I have an ASP.NET application that uses the Treeview (IE WebControls), and
some (1 of 100) users encounters a "Class not registered" exception which
appers in the treview.htc. I recived a "fix" that solved it - for a while -
on the machines that had the problem. The "fix" was to install IE6 SP1 F... more >>
Repositioning controls on a web page
Posted by pete at 7/29/2003 1:44:34 PM
I have a web page that the pageLayout property
is "GridLayout." I also have 2 DataGrid controls on the
page. Since the number of records can vary, how can I
position some information and then the 2nd DataGrid
underneath the first one? Do I have to change to Flow
Layout and put the begin... more >>
Closing Webforms - kalai
Posted by kalaiselvan at 7/29/2003 11:27:07 AM
hi,
I have an update button in a webform. When i click the button i want the
content to be updated and at the same time the form should get closed. How
come i can do that in code behind file using VB.NET...
Thx,
kalai
... more >>
Adding spaces to a ListItem
Posted by Larry Searing at 7/29/2003 11:26:40 AM
I would like to add spaces to a ListBox' items. When the
list arrives at the client, all spaces are removed. If I
put in the text, it displays as . However,
in a plain HTML <select> control, can be used in
each <option> to provide extra spaces.
I tried the HtmlSelec... more >>
newbie: asp page templatess
Posted by suzy at 7/29/2003 10:28:42 AM
hi i am quite new to .net and am trying to implement page templates but i
just cant seem to get it to work, and i dont quite follow the examples on
the net.
all i want to do is create a template where i have a header (user control),
left column, and footer on every page. the remainder of the ... more >>
User control and output cache
Posted by m_now NO[at]SPAM o2.pl at 7/29/2003 6:59:19 AM
Hello,
I already posted this question on aspnet.caching - but this group
seems to be more active.
I have created a navigation control that highlights current path based
on the URL (works ok).
In order to speed it up I declared the output caching inside my
navigation control.
5 secon... more >>
|