Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:674538
More Search Options
RSS Available
Matching Posts
Need Advice: Best way to join Mem Provider w/ 3rd party Authentication
Hello, I'm starting to develop a website that will have two options for logging in: 1. Log in using Facebook Connect OR 2. Have local account at this site using Sql Membership Provider. I'm thinking there are several ways of developing this. 1. Create custom Membership Provider that works with both SqlMembershipProvider AND Facebook Connect. The idea is that I could handle two different types of sessions/accounts by using an ambiguous custom membership provider. Pros/Logic If Facebook user
Posted to
Security
(Forum)
by
IceDog711
on 7/31/2009
Re: Login control not working with master page
Run it in debug mode (the play button). If you've been testing the page in just 'View In Browser' mode, coding errors would result in these symptoms. With debug mode, you'll be shown the coding line causing the issue.
Posted to
Security
(Forum)
by
IceDog711
on 7/13/2009
Re: Modalpopupextender - random page elements appear in front of popup (should be behind dark overlay, inaccessible)
Look up the 'z-index' property in css. http://www.w3schools.com/Css/pr_pos_z-index.asp You can control the order in which items are stacked on each other using it.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
IceDog711
on 7/11/2009
Re: DropShadowExtender in Safari 4 => No Tracking
Well, it works better if I set it to the TrackPosition to false. However, it still messes up when I sort the listview, which the dropshadows are in... Probably need to do a databind to fix it.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
IceDog711
on 7/11/2009
Re: Help with error
Example of what's wrong: updateTable.Parameters[0].Value = (string)course[9]; Let course[9] be DBNull.Value... updateTable.Parameters[0].Value = (string)DBNull.Value; Error will occur Workaround: if (course[9] != DBNull.Value && course[9] != null) updateTable.Parameters[0].Value = (string)course[9]; else updateTable.Parameters[0].Value = DBNull.Value;
Posted to
Getting Started
(Forum)
by
IceDog711
on 7/10/2009
Re: Refresh Gridview after insert
Sorry to bring up an old thread, but you should know that your vulnerable to SQL Injection. Use the command parameters... SqlCommand getComm = new SqlCommand("SELECT * FROM [Status] WHERE [apiMsgId] = @apiMsgId;", getConn); getComm.Parameters.AddWithValue("apiMsgId", ApiMsgId);
Posted to
Data Presentation Controls
(Forum)
by
IceDog711
on 7/10/2009
Re: can't get to controls inside a listview found inside a loginview
I might be wrong, but take out your codebehind for a second. Load the page up.. Then search the source for the lvBasic and IDLabel ID's.... They may have been altered if you have them in a dynamic content panel. For instance, I set a dropdownlist id as subjectlist, but it comes out as ctl00$dynamiccontent$subjectlist. Not sure if the FindControl method ignores the appended text, but try it and let me know.
Posted to
Security
(Forum)
by
IceDog711
on 7/10/2009
Re: Login control not working with master page
Don't know if this is your issue or not... I'd expect a compiler error, but my question is... Are you putting a form tag in the master page? Then another form tag in your dynamic pages? I believe you can't have more than 1 form with the runat='server' attribute in a page(including masterpage). Correct me if I'm wrong.
Posted to
Security
(Forum)
by
IceDog711
on 7/10/2009
Re: Profiles and the SQL Membership provider
I recommend reading a tutorial on this... search google for one. You do it by adding it to your profile provider definition in Web.config Ex: <profile defaultProvider="AspNetSqlProfileProvider" enabled="true"> <providers> <clear/> <add name="AspNetSqlProfileProvider" connectionStringName="MainDatabaseConnection" applicationName="/" type="System.Web.Profile.SqlProfileProvider"/> </providers> <properties>
Posted to
Security
(Forum)
by
IceDog711
on 7/10/2009
DropShadowExtender in Safari 4 => No Tracking
I have the extender's attribute TrackPosition="true", and it works in Safari 3 (Vista) However, I updated to Safari 4 (Vista) and the extenders stopped tracking. Is this a known issue?
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
IceDog711
on 7/10/2009
Page 1 of 4 (37 items) 1
2
3
4
Next >
Silverlight:
ASP.NET 4, ASP.NET MVC, and Silverlight 4 Videos of my Talks in Europe
Channel 10:
Faster Solid State Drives for Windows 7 Arrive
ASP.NET:
Death to confirmation dialogs with jquery.undoable
Channel 9:
E2E: Brian Beckman and Erik Meijer - Co/Contravariance in Physics and Programming, 1 of 2
TechNet Edge:
Windows Server 2008 R2 Quick Look #3 - PowerShell V2
ASP.NET:
2009 Blogged - Greatest Hits
WindowsClient:
2009 Blogged - Greatest Hits
Channel 9:
Nikolaj Bjørner and Leonardo de Moura: The Z3 Constraint Solver
Channel 9:
MEF & Silverlight 4 Beta - Part 2, Imports & Exports
Channel 9:
MEF & Silverlight 4 Beta - Part 1, Introduction
WindowsClient:
The (Near) Final Word on Multi-Monitor Taskbars for Windows 7 - Ultramon vs. DisplayFusion
WindowsClient:
Looking back at 2009, and forward to 2010
Silverlight:
Polling Video – A Viable sub-second alternative?
TechNet Edge:
Windows Server 2008 R2 Quick Look #2 - Active Directory Recycle Bin
Channel 10:
I'm a Windows 7 PC Themes
Channel 10:
24 Years of Windows Box Art
WindowsClient:
Silverlight tutorial: HOW TO build CommandLink Control in Silverlight with Expression Blend 3 and Behaviors
ASP.NET:
Converting an RGB Color To Hex With JavaScript
Silverlight:
Silverlight HVP Design – Configuration & Scenarios
Channel 9:
Channel 9 Live at PDC09: Day 3 Welcome
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online