| Thread | Last Post | Replies |
|
| Session times out in less time than I set | 02 May 2008 14:10 GMT | 9 |
I am using forms authentication for my web application. In web.config, I have this: <authentication mode="Forms"> <forms loginUrl="Login.aspx"
|
| How to create Treeview for cross browsers ( mozilla etc.) | 02 May 2008 11:31 GMT | 1 |
I have an application that works for IE. I used treeview.htc to create a tree view. And I want my client side code to work with linux based operating systems. So the code should work on firefox or other gecko browsers. Sample code for IE is like the following:
|
| MSDTC Error after applying W2K3 SP2 | 02 May 2008 05:34 GMT | 6 |
I have 4 webservers in my webfarm. All Win2k3 web edition. Before yesterday, none of them were service packed. I have now applied SP2 to two of them, and I'm getting a very weird MSDTC error on them now. The error occurs when I attempt a series of SQL statements wrapped in a
|
| Subscribing to custom events from dynamically created UserControls | 02 May 2008 05:11 GMT | 1 |
What is the best approach to subscribe to events from a UserControl that has been dynamically created at runtime, and where we don't know the UserControl type. I don't know the UserControl type because the program loads a different usercontrol based on a users selection.
|
| EnableEventValidation exception when dynamically adding controls on client with JavaScript | 02 May 2008 04:28 GMT | 4 |
I have the following situation in one of my asp.net pages. The user can add multiple table rows to a form by selecting a button. These rows can contain asp.net controls. When this button is selected, the row is added using JavaScript. The script uses cloneNode to clone a hidden ...
|
| Subdirectories in an application | 02 May 2008 02:00 GMT | 2 |
I need to put some files in a subfolder because I don't want all the files in the subfolder to be under form authentication. The problem is that in the root folder I have a "App_code" folder, where I have clasess to instanciate. This clases are not accesible
|
| Professional design advice needed | 02 May 2008 01:58 GMT | 4 |
We have an events page in our company that's database driven and we need to shared it with our partners. They need to pull information from our site. They can be running asp, php, .jsp..etc. I was thinking of using a web services and returning datatable (maybe to XML). Is
|
| Simpler Way to Input Text | 02 May 2008 00:53 GMT | 1 |
I have a site where the users manages a number of items. I've added commands to create a new item, rename an existing item, copy an existing item, and delete an existing item. For each command, I need the user to either enter an item name or confirm
|
| Sql server 2000 paging | 02 May 2008 00:25 GMT | 2 |
I need to implmenet paging across different tables. The tables all have a different name eg Data01, data02 data03 etc, however they are columns which are common to each table, but each table also has some unique columns
|
| Resizing of the TextArea on border or scrollbar | 01 May 2008 23:45 GMT | 1 |
I have created a html page from Java and I have added a .js file which can resize a TextArea inside the html on mousedown event. <script src="C:\temp\resize.js"> </script> <table> <tr><td onmousedown="javascript:resize('trinput',event)">
|
| 401 While Accessing Web Service | 01 May 2008 22:32 GMT | 10 |
I'm trying to access a c# web service from a web form. I set up the web reference proxy object as follows: proxy.PreAuthenticate = true; proxy.Credentials = CredentialCache.DefaultCredentials;
|
| asp.net default MembershipProvider and accessing it through code | 01 May 2008 22:11 GMT | 2 |
In Visual Studio 2008, I plan on creating the default membership provider and rolls in a custom database (through the web admin tool). I need to know how I would access user/login info and general things like that through code. More exactly, I have an sql query that will require ...
|
| ASP.NET - Remote name could not be resolved | 01 May 2008 21:40 GMT | 3 |
Iam trying to read a RSS feed (through XmlTextReader) from my application. The url (ex: "http://www.wipro.com/RSSFeed.xml") is accessible through the browser but when the same when tried from the asp.net application I get "The remote name could not be resolved: 'www.wipro.com' "
|
| GridView and TemplateField Help | 01 May 2008 21:07 GMT | 4 |
I have a GridView control. For a couple of reasons, I ended up with a TemplateField to contain my Edit and Delete links, something like this: <asp:TemplateField ShowHeader="False"> <EditItemTemplate>
|
| Postback nightmares | 01 May 2008 20:12 GMT | 4 |
Basically, I have two custom dates the user can enter via a popup calendar. These dates are stored into text boxes. Then the user can click a button (Run Report) and those values (as well as others) are used to build an SRS url string. This used to work before I modified
|