| Thread | Last Post | Replies |
|
| how to precompile a web application? | 16 Oct 2007 18:16 GMT | 7 |
a previous long thread brought this up. I can find no way to precompile a web application from visual studio. by precompile I mean all the aspx code is converted to assemblies by visual studio, not at runtime by asp.net. if you view the compiled aspx page it
|
| Accessing the DataList footer in ASP.NET | 16 Oct 2007 17:31 GMT | 3 |
I have a DataList that displays the item information and total price of each time but I want to add a footer with a complete subtotal. I am using ASP.NET (VB) however I don't know how to call a footer in my code, below is the code I have added:
|
| Sample ASP.Net on web site | 16 Oct 2007 17:15 GMT | 3 |
I am trying to run through a tutorial on this page: http://www.asp.net/learn/data-access/tutorial-01-vb.aspx I have created the SuppliersRow class with the method GetProducts() and also created the SuppliersAndProduct.aspx page as well as the onLoad event
|
| Inline C#: Mark with Attribute | 16 Oct 2007 16:49 GMT | 2 |
I have to do inline C# (please don't ask why!) and I need to decorate one of the classes with the [Serializable] attribute. Normally I would just add this to the top of my class, but how do I do this inline? I've done so quick searches and haven't come up with anything (kind of a ...
|
| .NET 3.5 Automatic Properties | 16 Oct 2007 16:22 GMT | 1 |
Does VB.NET include a similar feature as C# Automatic Properties? public string FirstName { get; set; }
|
| DetailView1.clientHeight too small on resize | 16 Oct 2007 16:10 GMT | 2 |
I am trying to resize a window to the same size as the DetailView. The width is just fine, but the height is always slightly too small and I have to add a constant. I have 4 of these detail views and each one is slightly too small in height.
|
| ArrayList | 16 Oct 2007 15:01 GMT | 5 |
What's wrong with the following code? Dim arrColors(5) As ArrayList arrColors(5) = New ArrayList arrColors(0).Add("Red")
|
| How can I prevent Caching of JavaScript and CSS files ONLY when I deploy a new application? | 16 Oct 2007 14:13 GMT | 7 |
How can I prevent Caching of JavaScript and CSS files ONLY when I deploy a new application? I only want to force a refresh the first time the client uses the new build. For instance, I'm told I can do it with javascript by including a
|
| Deploy CR? | 16 Oct 2007 13:59 GMT | 1 |
Hi, how can I deploy the Crystal Reports dlls on server? Just copying dlls to bin folder of asp.net site? Wich dlls? VS 2005 asp.net C# 2.0 Thanks!
|
| i can't add files to web application folder web setup | 16 Oct 2007 10:49 GMT | 1 |
i try to do the simplest thing , i have created a web setpup and when i try to add files to my web apllication folder it isn't not added. i don't get any errors i have no idea why it worked for me once, but it just doesn't work now
|
| Abort Option for the Excel Automated report generation | 16 Oct 2007 10:21 GMT | 1 |
I am using Excel automation for a report. Dim objExcel As New Excel.Application objExcel.DisplayAlerts = False Dim objWorkbooks As Excel.Workbooks = objExcel.Workbooks
|
| VB.NET vs C# | 16 Oct 2007 10:08 GMT | 20 |
I have been working with Visual Studio 2005 and I use mostly VB.NET. Sometimes I notice that a few things that were possible with C# were not possible with VB.NET. Now I am starting to use VS 2008 and ASP.NET 3.5.
|
| Remove columns on Gridview | 16 Oct 2007 09:27 GMT | 6 |
I have a Gridview that has 10 columns. I have a condition where I need to hide 5 of them but I'm not sure how to hide a column. I can hide a cell ok in the row databound event but not sur how to hide whole columns (I assume before databound). Thanks.
|
| Private Virtual Method | 16 Oct 2007 07:35 GMT | 1 |
Can't a method be declared as Private Virtual? If yes, then why? Thanks, Ron
|
| Javascript onload function | 16 Oct 2007 07:04 GMT | 3 |
I have a page which is a master page. I want to trigger a Javascript function in the onload event of the body. Simply attaching an onload event to the body which points to javascript function causes a javascript error (Object not found on line 0). I read that ASP.net does not ...
|