| Thread | Last Post | Replies |
|
| ClientScript.RegisterClientScriptInclude - | 08 Aug 2007 00:46 GMT | 9 |
I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not directly from i.e. default.aspx.cs code but from a class belonging to DLL, which is referred in my project. The code is as follow:
|
| Conflicing My.MySettings sections in web.config files | 07 Aug 2007 23:04 GMT | 2 |
I have an asp.net application at the root, and other applications suchs as /WebApp1, /WebApp2. By design, these web applications inherit the root application's web.config file.
|
| edit row from datagrid while hiding the record ID | 07 Aug 2007 22:06 GMT | 1 |
i need to allow the user to select a row from my dataGrid for editing. as such, i include the record ID in the first column and then extract like so when retrieving the record details: protected void gvLocations_edit(object sender, GridViewEditEventArgs e)
|
| Buttons and | 07 Aug 2007 22:04 GMT | 2 |
I have two buttons on my ASP.NET 2.0 form: <asp:Button id="btnSubmit" Text="Submit" OnClick="btnSubmit_Click" CausesValidation="true" runat="server"></asp:Button> <asp:Button id="btnCancel" Text="Cancel" OnClick="btnCancel_Click"
|
| How Can Library Code "know" it's hosting application type? | 07 Aug 2007 21:59 GMT | 5 |
I'm writing a code library that needs to be reused between a Windows Forms application and and an ASP.NET Web application. The library needs to do a couple of things differently depending on the type of application the library has been loaded for.
|
| sensible way to pass around values | 07 Aug 2007 21:34 GMT | 3 |
With .NET 1.x, this is what I did. On the destination page public class ToWebForm : System.Web.UI.Page { public const string PARAMETER = "PARAM";
|
| dividing master pages | 07 Aug 2007 20:56 GMT | 1 |
Hi, how can I divide a master pages in 4 parts? Header, left menu, right side (main) and footer? Just like a frame... On the header will be the a javscript menu, on left a gridview wich the user clicks a item will load the details records on the right (main)... and on
|
| How to refresh XSD method | 07 Aug 2007 20:51 GMT | 1 |
I have a method in one of my datasets (XSD, in VS.Net 2005) - I have updated the Stored Procedure it uses, but no matter what I do, it only lists the original fields returned, before the stored procedure was updated. How can I update the XSD file, or the Tableadapter, so that it ...
|
| discussion: has someone built an super-enhanced dataLIST control | 07 Aug 2007 20:29 GMT | 1 |
I use a variety of controls made by a variety of vendors, including Microsoft. In general the level of development on gridview-like presentational controls is very impressive. Telerik, Inc's r.a.d.Grid is spectacular, and the
|
| Test if Object exists | 07 Aug 2007 19:13 GMT | 2 |
I have an object that may or may not exist on a page. Therefore, I test for it. But it doesn't seem to work if I do the following: if not HomeLink is nothing then HomeLink.NavigateUrl="http://www.staffingworkshop.com/"
|
| Interactive utility to help with custom datetime format specifiers | 07 Aug 2007 16:57 GMT | 2 |
I've developed an interactive utility that can assist in the development of custom datetime format specifier strings. In addition to enumerating the options it will show how a combined set of options can be rendered. I plan on fleshing out the series to the other format specifier ...
|
| Insert Graphic | 07 Aug 2007 16:41 GMT | 12 |
Using ASP.net 1.1 I have a graphic I sliced in Photoshop. I would like to insert that into an asp.net file. Who knows how?
|
| Doubt Date | 07 Aug 2007 16:38 GMT | 9 |
Hi, how can I return just the date from a DateTime field ? Any C# .net 2.0 / SQL function? Thanks a lot!
|
| SQLCacheDependency not working - Cache item is always null | 07 Aug 2007 16:28 GMT | 1 |
Help: SQLCacheDependency not working. When I step through my code with the debugger I notice that the condition below: (cacheItem == null) is always true.
|
| asp:LinkButton | 07 Aug 2007 15:28 GMT | 1 |
I have a page that contains an asp:LinkButton. The purpose of this button is to allow the user to send the current page as an email. My "plan" was to, in the click event handler of the LinkButton, store the html source for the current page in the viewstate and take the user to ...
|