Forum: ASP.NET Apr 17th, 2008 |
| Replies: 2 Views: 606 Thanks for the feedback. It turns out that it was actually a problem on the server. I talked to the person in charge of our hosting servers and he said that the folder was configured as an app... |
Forum: ASP.NET Apr 16th, 2008 |
| Replies: 2 Views: 606 I have a data layer class built with the dataset designer that I have added as a reference (compiled dll) in a project. When I run the app locally from Visual Studio, it runs just fine. However... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 918 Thanks for the help. The method is only taking 14 hundredths of a second anyway, so I wasn't too worried about time savings. The way I'm doing it just seemed counter-intuitive. I kept telling... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 918 Here's the whole function:
'Create default xml objects
Dim xmlQuestionnaireData As New XmlDocument()
Dim elForm As XmlElement
Dim elPage As XmlElement
Dim elPages As XmlElement
Dim... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 10 Views: 1,391 Is the database hosted on the same network? If so, it's just a matter of connection strings. If it is not, and it's not publicly available across the internet, they need to have a web service... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 2 Views: 874 Regular Expressions should do the trick for this.
//Find the quotation marks in the string
Regex regEx = new Regex("[\"]");
MatchCollection mc = regEx.Matches(string);
//Remove them... |
Forum: ASP.NET Mar 7th, 2008 |
| Replies: 9 Views: 918 Was this supposed to be in another thread? My question has nothing to do with query strings. |
Forum: ASP.NET Mar 6th, 2008 |
| Replies: 9 Views: 918 Does anyone know how to create queryable collections in VB without using LINQ? I am working on creating a dynamic questionnaire system and need some help. Here's some background:
The system... |
Forum: ASP.NET Feb 29th, 2008 |
| Replies: 4 Views: 2,315 I'll have to try it. I'd rather do it that way but I couldn't get it to work. Thanks! |
Forum: ASP.NET Feb 29th, 2008 |
| Replies: 4 Views: 2,315 Thank you for the suggestion, but the problem lies in the fact that this takes place in a button_click event, and therefore before the Page_Init(), so the controls aren't available yet.
I did find... |
Forum: ASP.NET Feb 28th, 2008 |
| Replies: 4 Views: 2,760 Is this an Active Directory based network? If so, it sounds like you are looking for ADSI. Try looking at this article to get you started. http://www.4guysfromrolla.com/webtech/LearnMore/adsi.asp |
Forum: ASP.NET Feb 28th, 2008 |
| Replies: 4 Views: 2,315 I'm having trouble with finding a checkbox control on a page. I have a repeater that creates a list of items with checkboxes (so I can activate/deactivate them). The checkboxes are named as follows... |