| Thread | Last Post | Replies |
|
| Serving an image | 11 Feb 2008 17:14 GMT | 3 |
I am just wanting to simply load up an image and pass it on through the webserver.. i.e. the client would receive the file as if they'd entered the URL of a picture directly (using response-contenttype I guess), but really it's a URL to an aspx page with querystring (where I ...
|
| Web Client Computer Name | 11 Feb 2008 16:55 GMT | 8 |
I am aware that is is possible to determine the web client computer name using DNS, i.e. invoke System.Net.Dns.GetHostEntry( System.Web.HttpRequest.UserHostAddress). However, this only seems to work if the client computer resides within the same domain as the web server.
|
| Getting IDs back when submitting | 11 Feb 2008 16:53 GMT | 3 |
I have a webform that lists poeple from a database and has a radiobutton list for each person. I want to go down the list and select a radio button for each person, then save those selections to a database. But in order to save the selections to the database, I need to get back ...
|
| error on Response.End(): Unable to evaluate expression ... | 11 Feb 2008 16:43 GMT | 2 |
in an error path in an aspx script under DotNet 2, IIS6, Win2003 Server I get the following error (which I don't understand) on Respone.End(): {Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.}
|
| Methods of listing most popular pages in website | 11 Feb 2008 16:27 GMT | 1 |
Hi. I'm building a new data driven site with some static pages mixed in. I would like to provide a list of the most popular or most viewed pages on my home page. I can't decide if I should write the hits to the DB, a text file or use IIS's logging. My first choice would be
|
| calulations in repeater | 11 Feb 2008 16:18 GMT | 2 |
I'm using the Repeater Control for my output, within the repeater I need to show totals for some of the rows. Is there a way to do calculations within the repeater like you can within the grid? For example:
|
| format repeater row | 11 Feb 2008 15:31 GMT | 3 |
Is there a way to format a row within a repeater based on the data? If I have my row (cell 0) text is "Used" I want that entire row to have a blue background color. Is it possible to do that in the repeater?
|
| need smarter paging | 11 Feb 2008 15:15 GMT | 1 |
I have a query that returns many thousands of records, a broad search result. The web interface is fine with it because I use a paged grid view - however this control cannot tell the app server to just return the records that it's going to dispaly, it returns the whole result set ...
|
| RadioButtonList SelectedIndexChanged not working correctly in AJAX | 11 Feb 2008 14:55 GMT | 4 |
I'm using VS2005 and AJAX extensions. The SelectedIndexChanged fires when I select ListItem TextBox2 but does not fire when I select TextBox1 afterwards. If I remove Selected="True" from the ListItem for TextBox1 the event fires as expected. I need to have a default selected on ...
|
| AJAX client script bug with validator | 11 Feb 2008 14:53 GMT | 4 |
I'm getting a Javascript error when I move my development application to a production server. I have an page with an UpdatePanel and a RadioButton which switches between a TextBox or a FileUpload control both with validators. On the development server the validators work ...
|
| Server Click in table | 11 Feb 2008 14:52 GMT | 1 |
I would like to know if it is possible to use a ServerClick event on a tablerow. I have a HTML table and I would like to handle an event on the server when the user clicks on a row in the table. I could use the GridView, but then I have to add a new Select column and
|
| Reading a xml element | 11 Feb 2008 13:41 GMT | 1 |
Hi All i have a xmlelement saying in_root which has outer and inner xml as shown below: OuterXml
|
| Global instance of an object | 11 Feb 2008 12:11 GMT | 6 |
I need to call a wide variety of methods to query the database in each of my aspx pages; to achieve this target I wrote a "DbManager" class with a private static instance and a set of static method to call from my pages:
|
| Table HEIGHT setting | 11 Feb 2008 07:40 GMT | 1 |
Hi. Forgive me if thisn't *exactly* the right place to post this. I am having a strange problem where I want to set a table's HEIGHT (not width). When I do it using: <Table style="width:75%; height:100%;">
|
| Setting the Form.DefaultButton from CodeBehind | 11 Feb 2008 07:23 GMT | 1 |
Hi. I have a MasterPage but on each particular page that uses it, I need to be able to set the DefaultButton for the Form for that page. From the .cs file of my ASPX page, I have tried: - Form.DefaultButton = MyButton;
|