| Thread | Last Post | Replies |
|
| How to retrieve raw HTTP Post Data | 15 Nov 2007 23:40 GMT | 5 |
I have a page posting a raw jpg to me via HTTP POST. All reference I've found is centered around retrieving POST data as name/value pairs which will not work in this situation. What I need to do is retrieve the raw POST data and save it as a
|
| What Determines the Default Page (And How to Change)? | 15 Nov 2007 23:35 GMT | 7 |
My site requires all users to log on. Depending on the user's role, they will have access to a certain set of pages. I implemented this by redirecting the user to the appropriate home page in the handler for the LoggedIn event of the Login control.
|
| Serializing an object from a DLL | 15 Nov 2007 22:58 GMT | 1 |
I am using SQL to hold session state. My problem is that I have an object that I want to store in Session State. I can not mark the class it comes from as Serializable because it is from a DLL that I do not have the code for. There must be an easy way to do this I just can't ...
|
| Datagrid Headers | 15 Nov 2007 22:42 GMT | 2 |
I have a simple gridview with one column on a web page. I need to be able to set the column titles ("Header Title" below) programatically. How would I do this easily in C#? I tried inserting an ASP Label but I cannot get the FindControl to work for the Header Template.
|
| Detect When a Control Gains Focus | 15 Nov 2007 21:55 GMT | 3 |
Is there a way to detect when a control gains focus on a webform? Say I have two text boxes. After the user types in information on the first text box and hits the tab key or clicks on the second text box, I want to automatically fill in the second text box with the information ...
|
| if Dropdownlist Contains entry | 15 Nov 2007 21:55 GMT | 1 |
How can I condition if a dropdownlist contains a value? this clearly don't work. If ddl.items.FindByValue("RT-RECHARGE") Then Do i have to loop through it?
|
| Messy TreeView Results | 15 Nov 2007 21:33 GMT | 11 |
I am getting odd treeview results and hope you can help. I am parsing a string, "x/y/z", turning it into an array (that always seems to start with an empty string) and then using the elements of that array to populate a single tree.
|
| error in app log file anout aspnet_perf.dll | 15 Nov 2007 21:14 GMT | 6 |
The same error messages full out the application event log. --- "The open procedure for service "ASP.NET" in DLL "C:\WINNT\Microsoft.NET\Framework\v2.0.50727\aspnet_perf.dll" failed.
|
| Create Code | 15 Nov 2007 19:47 GMT | 3 |
I need to create a code at runtime: <table> <thead> <tr>
|
| Webapp restarting randomly | 15 Nov 2007 18:43 GMT | 8 |
I have a web app (asp.net 2.0) that I'm loosing Session variables in. I implemented: Application_End in Global.asax using the following code: Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
|
| Converting Web Site to Web Application (AJAX web service goes missing) | 15 Nov 2007 17:46 GMT | 1 |
I have just completed (almost) an exercise to convert a web site to a web app (acedemic reasons - just to see the differences). A few bumps on the road such as copying class files to the new solution and wondering for a while why the classes did not show up. It was because the
|
| Need Authorization to Shared Resources | 15 Nov 2007 17:27 GMT | 3 |
I have three roles: Admin, Trainer, and Client. Client pages are in my root folder, Admin pages are in my Admin subfolder, and Trainer pages are in my Trainer subfolder. No users can access any pages not matching their role. In order to enforce this, I have the following in my web ...
|
| customerrors page that errored and error? | 15 Nov 2007 17:10 GMT | 1 |
I've got a customerrors section in my web.config that redirects all errors to an ErrorPage.aspx <customErrors defaultRedirect="~/ErrorPage.aspx"> <error statusCode="403" redirect="~/NoAccess.htm"/>
|
| New to asp.net need help with state | 15 Nov 2007 16:34 GMT | 1 |
I am new to asp.net and need to learn it for a small intranet application for work. I have an application that needs to keep track of the users that are online and was going to use the application state for storage (I only
|
| Response.Redirect causes an exeception | 15 Nov 2007 14:53 GMT | 6 |
I have a very simple three page web application that I am having trouble with. If there are any problems with any of the parameters that are passed to the first page, I want to redirect to an error page and display a message. However, when I call Response.Redirect, ...
|