| Thread | Last Post | Replies |
|
| re : mixing classic ASP with .Net | 19 Oct 2005 15:04 GMT | 1 |
This is really strange. Here's the links without any text after them, in a new thread with the same subject : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/con verttoaspnet.asp http://www.consonica.com/solutions/statestitch/
|
| CustomValidator issue | 19 Oct 2005 14:40 GMT | 3 |
Here is what I have : <asp:templatecolumn HeaderText="HrBegin"> <itemtemplate> <asp:Label id="lblHrBegin" runat="server" Text='<%#
|
| sizeable grid | 19 Oct 2005 14:35 GMT | 6 |
I was wondering if anyone knows how to get a datagrid to size as the browser is resized such that the datagrid's borders would appear anchored to the browser edges. The datagrid should have a white-space border around it and scrollbars should automatically appear on the datagrid ...
|
| mixing classic ASP with .Net | 19 Oct 2005 14:27 GMT | 3 |
we've got a large site that was built using classic ASP. i've read that session state info can't be shared between classic and .Net, but, as the client continues to add new functionality to the site, i'd like to move the development to .Net. is it possible to share info like my ...
|
| AddHandler VB.NET and ASP.NET | 19 Oct 2005 14:24 GMT | 3 |
I have created a simple Web User Control. It dynamically creates a table. With a cell in the table, it creates a Button control set to run at the server. I then call AddHandler and handle the Click event from the button and raise it as an event within my User Control. This seems ...
|
| excel sheet in webpage | 19 Oct 2005 14:20 GMT | 5 |
Is there a way to have an excel sheet inside a web page? I don't mean have it prompt for open or save, then open in the browser, but an actual mini excel sheet that can be edited. Maybe through activex somehow.
|
| Cannot open an access database from within an ASP.NET application | 19 Oct 2005 14:13 GMT | 10 |
When I tried to use an Access database, I get the following exception: Server Error in '/WebGrid' Application -------------------------------------------------------------------------------- The Microsoft Jet database engine cannot open the file 'D:\Program
|
| Confused: page postbacks problemn. Please help | 19 Oct 2005 14:11 GMT | 2 |
I am very confused. Here is my situation: I have a web form with a few fields in place that are used as search criteria for a SQL database. Since I want the search criteria to be specific, I allow users to select values from a dropdown list, and add them to a listbox. ...
|
| windows integrated authentication and impersonation | 19 Oct 2005 14:05 GMT | 1 |
I trying to setup an intranet based on windows NT groups or roles. I have used windows integrated authentication with impersonation first but this include to use a user to access the database. I would prefer to use windows security based on groups or roles .
|
| System.Web.UI.WebControls.Repeater and multiple templates | 19 Oct 2005 14:05 GMT | 2 |
if I create a class A with some properies, then create classes B and C derived from A, later create and ArrayList filled with some B and C items. This list I would like to use as a datasource for a repeater control. Is it possible to add more than one <ItemTemplate>? I would like to ...
|
| write a file out to a network drive via ASP.Net | 19 Oct 2005 13:56 GMT | 1 |
When I try to write a file out to a network drive via ASP.Net, I get the following error when I deploy the application to the test server. I have no problems at all when I run it on my machine. Any help? I have my impersonation set to true and I turned off the IIS password
|
| Long Class Name | 19 Oct 2005 13:49 GMT | 4 |
I have a Static class which has a very large name which belongs to the same Namespace as the class that I am working in. I want to create an "alias" for this "big class name" so that I can save keystrokes and make the program more readable. I am not sure how to do this globally ...
|
| Please save me from shooting myself in the head! | 19 Oct 2005 13:36 GMT | 2 |
I'm dying here... I have an object that I use to access objects in the session state. I may be reading and writing at the same time, so I am trying to make the accessors thread safe using ReaderWriter locks. Here's a stripped down example of my class:
|
| Determining control that caused a postback | 19 Oct 2005 13:28 GMT | 4 |
string ctrlname = page.Request.Params.Get("__EVENTTARGET"); if (ctrlname != null && ctrlname != string.Empty) { return this.Page.FindControl(ctrlname);
|
| How to maintain state w/DropDownList populated from database? | 19 Oct 2005 13:13 GMT | 1 |
I have a dropdownlist that I populate from my database when the page loads. If I don't have autopostback enabled, I don't see the user's changed selection, but if I enable autopostback and do not reload the dataitems, nothing is there, and if I enable retrieving values from the ...
|