Forum: ASP.NET Jan 19th, 2009 |
| Replies: 7 Views: 1,787 |
Forum: ASP.NET Jan 18th, 2009 |
| Replies: 7 Views: 1,787 This is the ASP.net forum?
And the best way to achieve this is definately a recursive function. I dont quite understand your database structure could you ellaborate. A simple example of... |
Forum: ASP.NET Sep 22nd, 2008 |
| Replies: 2 Views: 2,297 Try
onclick="window.open('popup.aspx?textbox=txtDate','cal','width=250,height=225,left=270,top=180');return false;"
href="javascript:void(0);"
And if that fails you could always try
... |
Forum: ASP.NET Jun 8th, 2008 |
| Replies: 3 Views: 958 You need to force the browser to refresh it looks like. Im afraid the easiest method is to change its name. maybe you could add a time to the end of the file i.e. "filename_20080607.jpg" etc. |
Forum: ASP.NET May 6th, 2008 |
| Replies: 5 Views: 34,094 The method you are using is depreciated and you should create your controls dynamically using the built in methods.
E.g.
HtmlInputCheckBox cb = new HtmlInputCheckBox();
cb.id = "someid";... |