Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: LittlBUGer
  • Content: Threads
  • Order by date
  1. LittlBUGer

    Regular Expression validation issues

    Hello. I've been trying to get passwords on new user registrations restricted to have at least 1 uppercase letter, 1 lowercase letter, 1 number, no spaces, and be a minimum of 8 characters long. I'm pretty positive I've got the right regular expression (I got it off of regexlib.com) but for...
  2. LittlBUGer

    CreateUserWizard CreatingUser Issue

    Hello. I'm using ASP.NET 2.0 and I have a page that does user registration. I've had it all working fine for a while until I noticed a couple things that it wasn't checking. It wasn't checking to see if the email entered was a real email (by format) so I had to use a regularexpression...
  3. LittlBUGer

    NAS and Media Streaming issue

    Hello. Though I read several reviews and did 'some' research before I purchased anything, I was a bit too foolish and quick to do so. What I mean is, I recently purchased a Ximeta (or Klegg) NetDisk NDAS 500GB external drive as well as a D-Link DSM-520 Wireless media receiver. My intentions...
  4. LittlBUGer

    CreateUserWizard Validation Controls not working

    Hello. I've had a site with a user registration page for a while using the createuserwizard control and everything has been working just fine. There's even requiredfield validators for each field so that nothing is missed. The problem recently surfaced when I added another validator, a...
  5. LittlBUGer

    Restrict Special Characters in User Registration

    Hello. I have an ASP.NET 2.0 website using the "built-in" ASP user management/roles/registration and whatnot. I've created a wizard on a page to do the user registration. One thing I've noticed is that though users can register with spaces in their usernames, anything else other than letters...
  6. LittlBUGer

    Export GridView or SQL query to Excel WITH formulas

    Hello. I'm sorry if this has been asked before, but I'm looking for a way to export either GridView data or data from a SQL query to Excel WITH formulas. I've done exports to Excel many times just fine from both data sources above without formulas, but now has come the time where clients are...
  7. LittlBUGer

    SqlBulkCopy Strange Issue

    Hello all. I'm having a very strange issue when using ASP.NET 2.0 (and ADO.NET 2.0) along with the SqlBulkCopy command. Basically all I'm doing is having a user upload a pre-formatted Excel file with data in which I'm using the SqlBulkCopy command to copy the data from the file into a...
  8. LittlBUGer

    web.config SMTP Issues

    Hello all. I'm having some ASP.NET 2.0 emailing issues that I can't seem to figure out. When I first began programming a new website, which started using ASP.NET user authentication controls and registration to a MS SQL DB, all was fine. Meaning, with the details I put in for the web.config...
  9. LittlBUGer

    DropDownList in GridView Row Edit Issue

    Hello. I've been struggling with an issue where I have a gridview, bound to a SQL table, where I have one column as a template column so I can put in a dropdownlist in the gridview's edit mode for that column. I've gotten all of this to work great, except for when data coming from the database...
  10. LittlBUGer

    Relative Position not working at all

    Hello all. I have some code in my ASP.NET 2.0 webpage which doesn't seem to be working. Basically I have several controls with accompanying labels, all not visible by default. Each control/label is in their own asp.net table with a certain ID so that I can easily hide and unhide them. I have...
  11. LittlBUGer

    Select All after Row n - How?

    Hello. I've recently added the ability for a web tool I'm working on for the user to upload an Excel file to the server and than have the data within be inserted into our SQL Server 2000 database. I have it working with a more bare-bones Excel file in which it uses the SqlBulkCopy statement to...
  12. LittlBUGer

    Text from DropDownList in SqlDataSource ControlParameter

    Hello. I have an ASP.NET 2.0 webpage which has a custom new user registration area. Some of the parts include choosing a State, County, and Country, of which I've assigned dropdownlists to handle. Unfortunately, after everything has been chosen and the user clicks on the Register button, it...
  13. LittlBUGer

    DataGrid Sorting Link Issue

    Hello again. Somewhat related to my previous post, I have a datagrid which is autogenerated by binding to a table in a SQL Server 2000 database. Though I can't capture the column header text after the datagrid is bound, I can change it to whatever I want. The problem is that once I change it...
  14. LittlBUGer

    AutoGenerated DataGrid Column Headers Issue

    Hello. I've been trying to capture the column header information in my autogenerated datagrid all day and nothing I try gets any information at all. I can easily change each header, but the data coming from our database, where each column header is created dynamically, I just can't seem to...
  15. LittlBUGer

    Change SQL read data on the fly...

    Hello, this may sound like a dumb question, but I can't figure it out. I have an ASP.NET site with a datagrid. Usually I read some data from a SQL database and bind it directly to the datagrid, something like: cmdSelect = New SqlCommand( "Blah Blah...", sqlconn ) MyDG.DataSource =...
  16. LittlBUGer

    Integrated Windows Authentication not working

    Hello. I have a simple ASP.NET 1.1 site on my work's intranet that works fine and all, except for one thing: the browser always asks for a username and password even though Integrated Windows Authentication is enabled on our Windows Server 2003 that's running the site. The browser shouldn't be...
  17. LittlBUGer

    Interesting Group By Week Dilemma

    Hello all. I'm working on sort of a time keeping program for the place I work. Everything is done except for a few administrative reports. One of the reports needs to grab certain information from the SQL database based on each employee's hours (worked hours) entries that they input. This...
  18. LittlBUGer

    Interesting DataGrid Issue

    Hello all. I have a very strange and interesting DataGrid issue that I've been pulling my hair out at for 2 days now. I'm updating a web-based timekeeping program (if you want to call it that) for my company. There is a certain interface which allows admins to basically edit any information...
  19. LittlBUGer

    Group By Issue

    Hello. I've looked around the internet for 2 full days now on how to get certain data I'm pulling from a SQL database into a datagrid the way that I want it. Basically, I'm pulling all data from several tables with a couple where clauses and then binding it to a datagrid and displaying it. The...

Part and Inventory Search

Back
Top