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:712225
More Search Options
RSS Available
Matching Posts
Re: how to write stored procedures in MySql
Here is a link to the mysql documentation on stored procedures. (V5.1) http://dev.mysql.com/doc/refman/5.1-maria/en/stored-procedures.html
Posted to
MySQL
(Forum)
by
LSU.Net
on 5/27/2008
Re: Log in under ASPNET account in desktop application - need help..
Here is a page illustrating the implementation of WindowsImpersonationContext to impersonate a user. However, since the password for the ASPNET user is not known, you will not be able to effectively do this. http://msdn.microsoft.com/en-us/library/system.security.principal.windowsimpersonationcontext.aspx Please elaborate on what it is that you are trying to do with impersonation. Also, IIS6 application pools run under the "NETWORK SERVICE" account by default rather than ASPNET.
Posted to
Security
(Forum)
by
LSU.Net
on 5/27/2008
Re: How to return DataSet / DataTable etc. from GridView?
What type of field do you need to add to your Gridview?
Posted to
Data Presentation Controls
(Forum)
by
LSU.Net
on 5/15/2008
Re: Global Assembly Cach problem. Please help
Run the following: C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\ReportViewer\ReportViewer.exe on the target PC. http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=94440&SiteID=1
Posted to
Configuration and Deployment
(Forum)
by
LSU.Net
on 5/15/2008
Re: select query problem - group by and having...
What indexes/keys are in the table?
Posted to
Data Presentation Controls
(Forum)
by
LSU.Net
on 5/12/2008
Re: select query problem - group by and having...
Here's one way to do it. SELECT [SystemID] ,[Confirmation] , Max (RecordDate) as RecordDate FROM [tblSystem] a Where RecordDate=( Select Max (b.RecordDate) from tblSystem b where b.SystemID=a.SystemID) GROUP BY SystemID, Confirmation HAVING Confirmation = 'False'
Posted to
Data Presentation Controls
(Forum)
by
LSU.Net
on 5/8/2008
Re: how do i display a link or hide it depending on account type of user?
'LinkButton lnkButton is the desired link to show if the user has account type seller, it is set to Visible=False by default Sub CheckAccountType() Dim cn As New SqlConnection Dim cmd As SqlCommand Try cn.Open(connstr) cmd = New SqlCommand( "spGetAccountType" ) cmd.CommandType = Data.CommandType.StoredProcedure 'Set parameters here, (1) will be the output parameter cmd.ExecuteNonQuery() Dim role As String = cmd.Parameters(1).Value.ToString() If role = "Seller" Then lnkButton
Posted to
Web Forms
(Forum)
by
LSU.Net
on 5/5/2008
Re: Checkbox Value
When you build the checkboxes dynamically, do you assign a value to the ID property? If the checkboxes are persisted across postback, and they are in some type of container, it would be trivial to enumerate the contents of the Container control's Controls collection and check to see which one was checked.
Posted to
Web Forms
(Forum)
by
LSU.Net
on 5/1/2008
Re: Error sql excpetion Datetime.now could not be bound..
DateTime.Now is a VB.Net property and is not a valid SQL function. What is the type of the parameter that the user defined function UDF_Quarter expects? IF it's DATETIME, then use GetDate(). If not, you will have to build a string using the DatePart function or write the following: Dim query1 As String = " Select dbo.udf_Quarter( '" + DateTime.Now.ToShortDateString() + "')"
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
LSU.Net
on 4/7/2008
Re: Reflection: Invoke a private method with arguments
You need to use BindingFlags.NonPublic | BindingFlags.Instance
Posted to
Architecture
(Forum)
by
LSU.Net
on 4/3/2008
Page 1 of 46 (458 items) 1
2
3
4
5
Next >
...
Last »
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
Channel 9:
Channel 9 Live at PDC09: TWoC9 Day 3
Channel 10:
Microsoft's Mobicast: Stiched Cell Streams
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online