| Thread | Last Post | Replies |
|
| puzzle over <%# %> evaluation | 17 Apr 2006 17:28 GMT | 2 |
I have a Repeater that contains two controls, an Anchor (Not runat=server) and my own Custom Control (runat=server). Each has an attribute whose value contains <%# %> expressions. The Anchor gets an evaluated value, while my custom control gets the raw <%# %> characters.
|
| [ASP.NET 2.0] ChangePassword class conflicting with my page | 17 Apr 2006 17:14 GMT | 1 |
I have a web page named "ChangePassword.aspx", which works just wonderful on my developer machine. When I deploy it to the server, though, I get: Compiler Error Message: CS0030: Cannot convert type 'ASP.changepassword_aspx' to 'System.Web.UI.WebControls.ChangePassword'
|
| MasterPage - ContentPlaceHolder - How to navigate to the ContentPlaceHolder "Child Page" | 17 Apr 2006 16:48 GMT | 4 |
How do I programmatically load an .aspx page into the contentplaceholder? Similar to what would happen in the "navigateURL" property when clicking on a hyperlink on the master page. . . ASP .NET 2.0
|
| Q: Passing information between browser windows? | 17 Apr 2006 16:45 GMT | 2 |
My main main page is to create a pop-up window for the user to enter advanced search criteria. When he submits the query, the page in the main window should display search results. So, how would I pass the criteria from the popup back the the main window? (URL/href
|
| debugging ASP Pages | 17 Apr 2006 16:24 GMT | 2 |
When I am attaching process to debug in ASP.NET application, the Debug window shows a list of currently or recently used/opened ASP.NET applications.. I don't understand how and were this is list is from, is there a way to bump a specific one up the list or change the order?. ...
|
| 2.0 woes | 17 Apr 2006 16:21 GMT | 1 |
I'm trying, I really am. But the changes made in 2.0 are breaking me. Apparently all my app_code class methods have to be public. Internal methods can't be accessed by code on a page. Nope, not possible. I mark a method in a helper class as internal and it becomes ...
|
| ajax basic | 17 Apr 2006 16:14 GMT | 2 |
Please Help me out, I have heard about Ajax Programming. I want to use it in my application but i can't understand the basic of Ajax.I serach a lot and studied in google Please excuse me for a poor Knowledge in Web Technology.
|
| ASP Net in browser | 17 Apr 2006 16:11 GMT | 2 |
I have done a project ,its working well .. now i need to run the project in the browser like : http://localhost/WebSite10/Default.aspx . Its not working but if i run it from project the url is like this : http://localhost:4687/WebSite10/Default.aspx . but i need to run it
|
| hidden fields? | 17 Apr 2006 16:06 GMT | 5 |
I know that <input type="hidden" fields are used within a form, but do <ASP:HiddenField s have to be in a form to be used? I've got a VB-based (codebehind) that catches the click event of a button on the page, does some processing, populates the <ASP: hidden fields, and then I
|
| How do I submit a form and then do a response.redirect? | 17 Apr 2006 15:33 GMT | 3 |
Hi all. I'm really stuck here, and would greatly appreciate any help or suggestions. I'm trying to (from the server side) submit the page that is loading to a new window, then redirect to another form.
|
| Best practice for user/customer repository | 17 Apr 2006 15:31 GMT | 5 |
Until now I used the Session("x")="y" method for saving user or customer info throw web pages (differently for each session) like that: Session("UserName")="Bob" My questions:
|
| why is my range validator failing? | 17 Apr 2006 13:18 GMT | 3 |
I have this range validator: <asp:rangevalidator id=RngVal_LGwidth runat="server" ErrorMessage="LG Width needs to be between 10px and 2000px" EnableClientScript="False" ControlToValidate="tbx_LGwidth" MaximumValue="1999" MinimumValue="10"
|
| ASP.NET 2 Compile DLLs | 17 Apr 2006 12:04 GMT | 1 |
How can I set VS2005 to compile DLLs to a bin directory? Sometimes there is something nice and it is removed.... do not know why?!!?! Evan
|
| Event Procedure firing twice?? | 17 Apr 2006 12:01 GMT | 4 |
I have a odd thing happening. I have a sub that is called upon a button click and it seems to be firing TWICE. I have no idea how this is happening but I suspect is has something to do with page_load and IsPostBack. The page has a form that displays a record. The user can delete ...
|
| problem with IExplore and unicode control chars | 17 Apr 2006 10:38 GMT | 5 |
I've got a web application where I need to join several strings, some of which are read from a dbase and display then IN the order they are joined. I.E. I want to display "Hello {USERNAME}, How are you doing?" ({USERNAME} is read from dbase).
|