| Thread | Last Post | Replies |
|
| MSDNMag Article re Ngen - does it apply?! | 24 Apr 2006 04:10 GMT | 7 |
I've just read the article in this months MSDN about using Ngen to speed up initial load times and I thought "great, I can speed up initial load of my web app!". However, having just read the conversation between Steven Cheng and MLibby
|
| Scrolling to bottom of page | 24 Apr 2006 04:08 GMT | 4 |
I need the browser to scroll my asp.net page to the bottom when the user clicks on a server-side link or button at the top of the page. I added an anchor tag <a name=#bottom> to the html and tried to attach javascript to the click event of the button that creates <a ...
|
| How to pass a postedfile to a system.drawing.image | 24 Apr 2006 03:59 GMT | 4 |
I'm grabbing a file from a file upload form field. This is a 'system.web.httppostedfile' I would like to modify the image (Cropping/scaling) using system.drawing.image.
|
| Simple Beginner Question (I believe) | 24 Apr 2006 03:34 GMT | 5 |
VS 2003, C# if the language matters. Scenario: Two page project, text box content on the start page is loaded into session variables to be displayed in a greeting on the second page. Works fine the
|
| delete wwwroot subdirectory and virtual directory when web application is uninstalled | 24 Apr 2006 03:27 GMT | 1 |
I have a web application created in Visual Studio 2005. The web application is installed in a subdirectory of the wwwroot directory, which is mapped in turn to a virtual directory (IIS, Windows XP). When the web application is uninstalled from Control Panel > Add/Remove Programs, ...
|
| Can I use static variable in the scope of a PAGE? | 24 Apr 2006 02:14 GMT | 4 |
I m building an application in which I redirect the user to a particular page. In the Page Load event of the that page , I assign a variable some value. Then I call the Button click event on that page. I have applied the !IsPostBack so that the Page Load event does not occur on ...
|
| Iterate through page controls | 24 Apr 2006 01:08 GMT | 1 |
Hi friends, I need of some help, I have this code: For Each t As TextBox In Page.Controls ' here is the error
|
| Smart or stupid? Tying textbox length to database column length | 23 Apr 2006 23:57 GMT | 1 |
Wondering what other people do about this issue... You're writing a web app in asp.net that requires user input. Data will be stored in SQL Server Express database. You want to make sure data does not exceed maximum length for database column.
|
| Horizontal Gridlines not showing up | 23 Apr 2006 23:06 GMT | 2 |
I can not get the horizontal gridlines to show up on a Gridview. I have changed the selection to both and horizontal with no sign of them. Also, when I set the Gridlines property to Vertical or Both, the Vertical lines show up but they are the wrong color. Which property ...
|
| window.status | 23 Apr 2006 23:02 GMT | 1 |
in the old days we use this script to delete the link address when the user passed the mouse under a link: <a href="...." onmouseover="javascript:window.status='';">link</a> in ASP.NET 2.0 how can I do this programatically for all links, instead do
|
| Cropping an image | 23 Apr 2006 22:33 GMT | 3 |
I've been trying to figure out how to crop an image. I found the sample code below, but I'm not exactly sure what it's doing. I've added my own comments as best I can trying to explain what I think it's doing. Can anyone clarify this for me?
|
| Add web reference question in Visual Studio? | 23 Apr 2006 21:56 GMT | 3 |
I wonder if someone can help me with this beginner's question. When I add a web referenece to my C# projecct - using Add Web Reference - local machine. where and how does VS search and display those web services? There are some old web services displayed but not valid(I was
|
| asp.net 2.0 issue | 23 Apr 2006 21:33 GMT | 2 |
Hi all, I am seeing a very serious recurring problem that occurs whenever I update my asp.net 2.0 website. Everytime I copy new files over, I have to re-start the iis service by issuing an iisreset command and sometimes I have to delete the temporary asp.net files. If I dont do ...
|
| adding an attribute to a htmltextwriter tag. | 23 Apr 2006 21:08 GMT | 2 |
I am new to writing a control sorry if this question was answered. I am writing a control where I override the RenderBeginTag, now in this method I would like to create a DIV tag and add attributes to it. writer.RenderBeginTag(HtmlTextWriterTag.Div);
|
| Emailing a dynamically generated aspx page | 23 Apr 2006 20:45 GMT | 3 |
After dynamically generating an aspx page I need to email what is being displayed by the browser. I have looked at System.Web.Mail but it looks like you have to generate the body of the message as one long string.
|