Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
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 >>



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 >>


DevelopmentNow Blog