all groups > asp.net building controls > may 2006 > threads for may 15 - 21, 2006
Filter by week: 1 2 3 4 5
need some advice
Posted by Ben at 5/20/2006 5:15:54 PM
Hi,
I come from classic asp and i need some advice for this application.
It's about a computer reservation system in a school. I want a page where a
student can see his own made reservations, the number and the date of each
reservation, and where he can check a checkbox beside each reservation... more >>
interface alteration
Posted by nate at 5/19/2006 9:19:02 AM
In Dino Esp... book he talks about how user controls are the way to replace
the old file include method. Then he goes on to say that if it is a large
site it becomes a problem because every time that you change the interface of
that control you will have to recompile all the pages that referen... more >>
get the output of the render event on the server
Posted by mr. dropdown at 5/19/2006 1:36:32 AM
Hello,
Is it possible, after the control finishes all the rendering part, to get
the html that i just created before moving to the client, on the code behind
for example?
Thanks.
... more >>
user controls: design-time vs. programmatic behavior
Posted by matt.delvecchio NO[at]SPAM shell.com at 5/18/2006 5:23:13 PM
hello,
ive got a usercontrol that has some textboxes, a button, and a handler
routine for its button_click. when this usercontrol is dropped into a
page via the designer, it functions as expected -- when the button is
clicked its event handler loads up the routine and i do db stuff.
however... more >>
programmatic usercontrol woes
Posted by matt.delvecchio NO[at]SPAM shell.com at 5/18/2006 4:33:50 PM
hello,
i have a user control that works great, when its used as a design-time
controls. however, when i try to use it as a programmtic control, im
running into troubles.
the control is pretty simple: it has a textbox, and a grid. in my
webform, on button_click i call one of its methods to d... more >>
anyone built a listview
Posted by kurtn at 5/17/2006 5:51:02 PM
is there any way to build something like a listview control for an asp.net
web page?? I really like the functionality that a listview has. Anybody
know how to do something like that?
thanks... more >>
nested controls
Posted by mr. App at 5/17/2006 1:02:35 PM
I'm trying to do the following:
<ctl:Control1 id=a1 runat=server>
<ctl:Control2 id=a2 runat=server Text="temp" />
</ctl:Control1>
Both controls are simple custom web controls. The problem is that the inner
control is not being rendered. I read in MSDN that I have to add
[PersistChildre... more >>
need help on ppt files
Posted by AVL at 5/17/2006 2:26:02 AM
Hi,
I've a requirement in which I need to show a powerpointf file in a web
page...
How can I acheive this? How can we show word documents or powerpoint files
in web pages in asp.net?... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Can I control existing HTML by using a custom control?
Posted by mr. App at 5/16/2006 12:52:16 PM
Hi,
I would like to know if it's possible to do something like the following:
<ctl:PermissionControl UserName="johndoe">
<table>
<tr>
<td>Hello John!!!</td>
</tr>
</table>
</ctl:PermissionControl>
I would like to check the UserName property on the ser... more >>
Howto add eventhandler to web custom usercontrol?
Posted by jimmy.liang NO[at]SPAM gmail.com at 5/16/2006 1:25:24 AM
hi,
Is there any way to add eventhandler to custom usercontrol and could
set it at webForm?
i can add eventhandler on code, such as at Page_Load, add:
MyControl1.SelectedIndexChanged = this.OnSelectedIndexChange;
but, if i want to add eventhandler at webForm, like:
<uc1:MyControl ... more >>
view state question
Posted by mr. App at 5/16/2006 12:00:00 AM
In many custom controls examples I see the following code:
public string Text
{
get
{
return (string)ViewState["Text"];
}
set
{
ViewState["Text"] = value;
}
}
... more >>
|