| Thread | Last Post | Replies |
|
| how to cause button click event from another frame | 31 Jan 2006 00:09 GMT | 1 |
I have one frame that needs to cause a button click event on another frame. I was trying to do this by putting a display:none LinkButton on the target frame, and having a javascript on that page that can be called by the remote frame, and the javascript would say btn.click() ... ...
|
| CreateUserWizard - how clean up data before accepted? | 30 Jan 2006 22:21 GMT | 3 |
I am using the CreateUserWizard. In there I have "Username" and some other fields (stored in profile). For a few of the fields I want to "clean up" the data before the data is saved. (Remove the spaces, remove special characters, etc...) How can I do this? Do I use the ...
|
| Table Control - how to recognize Text box | 30 Jan 2006 22:10 GMT | 1 |
I am using table control to create table/cell & 2 text box & one image button during runtime. Onclick event of image button i would like to validate if there is any value in either of text boxes, but my intellisense will not recognize those textboxes created during runtime. How ...
|
| Newbie Question | 30 Jan 2006 22:04 GMT | 1 |
I have a script to upload files to a folder on the server using: FileUpload1.SaveAs(Server.MapPath("uploads\" & FileUpload1.FileName)) If I upload into the folder and there is all ready file with the same name then it will be overwritten.
|
| How to get/set MembershipUser status? | 30 Jan 2006 21:12 GMT | 2 |
The asp.net 2.0 Web Site Admin Tool allows me to check/uncheck the "Active" status for each user. How can I do this programatically? I thought it would be in the MembershipUser class but I could find no such property or method to do so.
|
| Trying to query the Address table data of AdventureWorks database from Query Analyzer - need help! | 30 Jan 2006 20:58 GMT | 1 |
I have installed Sql server 2005 developer on my machine which already has a Sql server 2000 installed on. Now i am trying to query the Sqlserver 2005 data(Ex: from Person.Address located in AdventureWorks database) in Sqlserver 2000 query analyzer:
|
| beginner question: populating a form | 30 Jan 2006 20:54 GMT | 1 |
i'm (finally) starting off with asp.net and have the following problem: there's data in a table (MS Access) i want to edit through an asp.net page so how i went and did this in asp was: i executed my query, so i had a recordset (eg. called rs) with the values i
|
| Getting XML Back? | 30 Jan 2006 20:54 GMT | 1 |
I have a client who built a URL which returns data in XML format. All I have is a URL, which I will pass some querystrings too and it will return XML. I'm new to this, so I just need to know what classes to use to make this call and access this data.
|
| Adding Server Side code in a Client Side Script??? | 30 Jan 2006 20:52 GMT | 1 |
I am trying to add some server side code in some Client Side Script. I can get it to work properly with the code embedded directly in the .aspx page. However, if I try to use the Page.ClientScript.RegisterClientScriptBlock I get an error and the code does not execute.
|
| META REFRESH | 30 Jan 2006 20:49 GMT | 2 |
Can someone explain to me why the <meta http-equiv="refresh" content="5"/> will not work for me? I use it in a standard asp page and it works just fine. Why in ASP.NET2.0 it doesn't. I don't get any errors, it simply does not
|
| Question: CreateUserWizard - how change "valid" password | 30 Jan 2006 20:44 GMT | 3 |
Right now, if you use the CreateUserWizard for ASP.NET 2.0 a valid password is this: Password length minimum: 7. Non-alphanumeric characters required: 1. How do I change it so that a valid password does NOT require a
|
| looping through controls collection | 30 Jan 2006 20:00 GMT | 7 |
I am not farmilar with the object model for webforms. I want to loop through the web form controls - pulling out the checkboxes on the form like the following: For Each ctrl In Me.Controls
|
| Creating a seperate Edit page | 30 Jan 2006 19:50 GMT | 5 |
I am using Visual Web Developer to create a basic database app. I put in a grid view and Enabled Selecting on the gridview. What I would like to happen though is when the person clicks select it opens up a different EditItems.aspx page with the edit template so the user can
|
| Need help with simple class | 30 Jan 2006 18:40 GMT | 4 |
I created the class "document": Public Class Document Private Shared _title As String Public Property Title() As String
|
| dynamic word document generation | 30 Jan 2006 18:09 GMT | 2 |
In asp.net/SQL Server application based on business rules, I would like to dynamically generate word documents. Content and layout would be fully customized.How do I go about doing it? I could use XML/XSLT solution but then xml file has to be created every time
|