| Thread | Last Post | Replies |
|
| ASPNET 3.0 newbie question | 16 May 2008 14:35 GMT | 5 |
My VS2008 just arrive. One very dumb question, how to subscribe to event like Page_Init? I can't find it anywhere in the IDE. Ended up have to type in myself. TIA
|
| LoadControl And Events Wireup | 16 May 2008 13:00 GMT | 2 |
I'm loading a webusercontrol dynamically using The following code: Control newCtrl = LoadControl("MyCtrl.ascx"); newCtrl.ID = "MyCONTROL"; container.Control.Add(newCtrl);
|
| PageParser.GetCompiledPageInstance | 16 May 2008 12:26 GMT | 2 |
I am working with a custom handler factory that serves aspx pages based on url. When this is called, it compiles the page based on the url that the application pool uses to serve up the page. Is there a way to "re-
|
| How to add bar separator to Menu items? | 16 May 2008 11:13 GMT | 1 |
I have a Menu control which is data bound to an xml document. I would like to add a separator ("|") between two menu items. I googled and found this: http://forums.asp.net/p/942408/1129699.aspx So, I declared
|
| Logging in with ASP.NET | 16 May 2008 11:10 GMT | 1 |
I have a single login for a website, so my C# code is simply: if (textUserName.Text.ToLower() == "admin" && textPassword.Text.ToLower() == "password") {
|
| Need some help for sending custom commands from ASP.NET page | 16 May 2008 09:45 GMT | 1 |
I have been developing a project that is composed of one windows service and one ASP.NET web site. The windows service and ASP.NET web site reside on the same server. I want to send start/stop service commands and custom commands to the
|
| How to access ID in Master Page | 16 May 2008 05:17 GMT | 2 |
I have the body tag of my page in my master page. <body id="MyBody" runat="server"> In my control that is on the page, I want to set the onload event which I would do if it was in my control but it isn't:
|
| How to set the framework version with IISVDIR ? | 15 May 2008 23:22 GMT | 5 |
I wrote a script which uses IISVDIR to add the .NET projects to the IIS. The problem is that some ASPX solutions are written for framework 1.1 and others for framework 2.0. I could not find a way how to programmatically set the framework
|
| Dotnet 2.0 | 15 May 2008 22:59 GMT | 1 |
I have a .net application that needs to upload/download file to/from remote site. I suppose that on a remote site I could publish asp .net page which would contain upload download control. What class, on the application side, would I need to invoke upload/download functionality?
|
| anyone good with web gridview control | 15 May 2008 22:49 GMT | 2 |
HI I have two dropdown boxes that I am populating with results from the database. I can not seem to get them to show up as a row in the grid view control. In addition when the page first loads I need the headers to show up with all of the columns even though the only data that ...
|
| Formating currency on label | 15 May 2008 22:24 GMT | 4 |
Hi, I need to show on a label the data coming from db and it must show a currency... I'm using a SqlDataReader reader, but doesnt work... lblPreco.Text = Eval(reader[1].ToString(), "{0:c}"); Can you help me ? Thanks!
|
| automatic screen capture | 15 May 2008 22:07 GMT | 2 |
I, as others, routinely do a screen capture by using "Alt+Print Screen". Is there a way to program this as an event to a button control for the user to press? Thanks!
|
| I can't find $get syntax information | 15 May 2008 21:07 GMT | 6 |
I was just looking at some example code in the VS2008 help for VB. In a JavaScript example I came across some syntax that I didn't recognize and could not find information about on the usual JS sites I use as resources. In a place where I expected to see "document ...
|
| Return to previous page | 15 May 2008 19:17 GMT | 13 |
I use javascript:history.go(-1) to return to the previous page. I've now found out that when returning to the previous page all selections that the user made in dropdownlists are lost. How can these be kept when returning?
|
| ClientCallback a step behind... | 15 May 2008 18:57 GMT | 3 |
I am using a client callback routine that seems to mostly work, except that program flow doesn't seem to continue from the point the function is called after the Receive function finishes... ...paraphrasing....
|