Forum: ASP.NET Apr 1st, 2009 |
| Replies: 0 Views: 767 I am using Context.User.Identity.Name
to get the user that is logging into the system through the internet.
Unfortunately, their credentials are not being passed to the web application.
How... |
Forum: ASP.NET Apr 1st, 2009 |
| Replies: 6 Views: 1,150 Make that:
comment out
Dim ckSelected as System.Web.UI.WebControls.CheckBox
and within your loop
For Each dgItem As GridViewRow in dgsvcPacks.Rows
Dim cb As CheckBox = dgItem... |
Forum: ASP.NET Apr 1st, 2009 |
| Replies: 6 Views: 1,150 comment out
Dim ckSelected as System.Web.UI.WebControls.CheckBox
and within your loop
For Each dgItem As GridViewRow in dgsvcPacks.Rows
Dim cb As CheckBox = row.FindControl("ckUpdate") |
Forum: VB.NET Dec 2nd, 2008 |
| Replies: 13 Views: 3,540 Teme64 already showed you how to create a class in vb.Net, compile the code to a DLL, and register it.
If you are using VS just go to the BUILD menu item and it will be done for you automatically.... |
Forum: VB.NET Dec 2nd, 2008 |
| Replies: 1 Views: 1,584 UTop = UBound(ItemArray)
ULower = LBound(ItemArray)
For lCtr As Integer = ItemElement To UTop - 1
ItemArray(lCtr) = ItemArray(lCtr + 1)
Next
ReDim Preserve ItemArray(ULower To UTop - 1) |
Forum: VB.NET Dec 2nd, 2008 |
| Replies: 13 Views: 3,540 You will also need to give the user in SQL Server "special" permission to run external DLL's. See the documentation for sp_oacreate. |
Forum: IT Professionals' Lounge Aug 6th, 2008 |
| Replies: 3 Views: 854 Any developers of these products out there? |
Forum: ASP.NET Jun 13th, 2008 |
| Replies: 2 Views: 1,650 Thanks for getting me started on it!!!
The actual manner to perform this is:
Create a (dll) reference to : System.Web
Then before the Class definition:
Imports System.Web.UI.HtmlControls
... |
Forum: ASP.NET Jun 6th, 2008 |
| Replies: 2 Views: 1,650 I need to be able to perform the creation of HTML controls (i.e. Tables, form controls) from inside of a DLL in vb.Net
I have searched Goggle far and wide for what Import statement references the... |