| Thread | Last Post | Replies |
|
| Serve a file on page load (save file as) | 06 Dec 2007 05:48 GMT | 3 |
I'm trying to do something fairly simple. I want to create a web page that will take a parameter in the URL and return a file on page load. The file is stored in a MSSQL 2005 database in an XML field (which is similar to a varchar(max) field). The URL would look something like ...
|
| At what point does a new Primary Key value become available? | 06 Dec 2007 03:33 GMT | 5 |
Ok, I'm probably missing something simple but I need to get this running fast. I'm writing a demo in ASP.Net 2.0. All Adds and Edits are normally done through a DetailsView. The Detailsview is bound to an ObjectDateSource (very much like in those demo videos) and when the page ...
|
| Alternatives to Application_BeginRequest() | 06 Dec 2007 02:57 GMT | 3 |
I've used an Application_BeginRequest function in my global.asax page to implement some URL rewriting functionality on our website. However, upon moving it to my host (1&1.co.uk), it no longer works. They don't support Application_BeginRequest?
|
| Detecting screen resolution in server code? | 05 Dec 2007 22:11 GMT | 14 |
Can screen resolution be detected with server code (in Page_Load) ? I have tried this: public int Width = Convert.ToInt32(System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width);
|
| Subclass web.ui.page | 05 Dec 2007 21:25 GMT | 4 |
What is the proper way to subclass web.ui.page? Public Class MyPage Inherits System.Web.UI.Page Protected Sub Page_Init(ByVal sender As Object, ByVal e As
|
| How to mimic a user's browser session | 05 Dec 2007 21:03 GMT | 2 |
I've got some SQL data file of names/addresses that I would like to import on a daily basis into the FedEx.com website's address book. If you have a FedEx account (like our company does), you can manually do an import of a CSV file.
|
| ajax updating a table not using updatepanel? | 05 Dec 2007 20:54 GMT | 1 |
we currently have a site done using asp.net 2.0, one of the pages has a datagrid, which displays some information. currently there is a refresh button, but we want to change this so that every few secs we can refresh it using ajax. using javascript to call the webservice,
|
| Customvalidator problem within Detailsview | 05 Dec 2007 20:51 GMT | 2 |
I have a customvalidator within an EditItemTemplate, in order to validate a dropdown list. This is the first time I've tried to implement a cv in Asp.Net 2.0, let alone a DetailsView. On this page are also several required field validators for unrelated textboxes. The problem, ...
|
| viewsource not showing html sometimes | 05 Dec 2007 20:47 GMT | 6 |
hey all, i have a user control on my web page. the user control dynamically builds some controls. when i browse to this page and right-click and do a view source, the html
|
| how to run a web project using http:// | 05 Dec 2007 20:12 GMT | 6 |
hi friends, I am using asp.net with c# to create a web site. earlier I tried my hand with local file system mode in vs.net to run my web projects. It worked fine but when I switched to http mode it started giving me
|
| recursive help please | 05 Dec 2007 18:33 GMT | 2 |
hey all, i have to 2 tables (Tbl1 and Tbl2) that's contained in a fieldset, which is contained in a tablecell of a table, which is contained in a div, which is contained in a panel (still with me?)
|
| problems with visual studio 2008 on vista | 05 Dec 2007 18:22 GMT | 5 |
Hi, anyone using VS2008 (final) on windows Vista? I have a problem. The ASP.NET web site administration tool on any site created by VS2008, running on Vista, is not working as it should. I can configure users, roles, but when I try the option 'Select a single
|
| Accessing Session State across pages | 05 Dec 2007 17:55 GMT | 5 |
I am an amatuer asp.net programmer so I hope this question isn't to dumb. I am having difficulty with my understanding of session state. I have an application that stores some values in the session and then I use the following code to try and get a stream of image data. mypage ...
|
| Find Mode in GridView RowDataBound | 05 Dec 2007 17:42 GMT | 3 |
My brain is fried. How can I determine if the row is in edit mode when processing the RowDataBound event? Thanks. David
|
| Moving from In Process Session to SQL Server Session State | 05 Dec 2007 17:22 GMT | 1 |
Presently we use InProc session state to session variables in our application. I was just thinking if its is easy to switch from InProc to SQL server session state.
|