Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Les Matthews #1
VB.NET: Set Session Var to Dataset Value
I'm having some trouble writing a dataset value to a session variable using
VB.NET, and would appreciate assistance. The code block below produces a
compilation error stating that "Name 'Container' is not declared".
<%
Dim strEmpNum As String = ""
strEmpNum = dsSessionVars.FieldValue("employeeNumber", Container)
Session.Contents("EmployeeNumber") = strEmpNum
%>
Les Matthews Guest
-
#16263 [Com]: session.start() create new empty session file and not resume existing session
ID: 16263 Comment by: pat at burnttech dot com Reported By: kur at natur dot cuni dot cz Status: No Feedback... -
Dataset.length(), dataset.hasnext() not working.. Why?
I have a dataset that has 3 items, yet when I test for it, it is "undefined". Any ideas why this property would not be available? Thanks Geoff -
dataset.Databind error when dataset XML contains attributes...
I've come accross an interesting problem populating an asp.net datagrid. I am trying to bind XML data to a datagrid as I've done in countless other... -
Ccopying a datatable content from an untyped dataset into a table which is inside a typed dataset
Hi All, I am facing problem in copying content of table from a untyped dataset into to a table inside the typed dataset. I wanted to copy the data... -
How can I "know" the difference between a session timed out and a session that did session.abort?
Any clues? Thanks for your time. Adam -
Julian Roberts #2
Re: VB.NET: Set Session Var to Dataset Value
Try
strEmpNum = dsSessionVars.FieldValue("employeeNumber", Nothing)
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
Les Matthews #3
Re: VB.NET: Set Session Var to Dataset Value
Julian Roberts wrote:
Thanks, Jules!> Try
>
> strEmpNum = dsSessionVars.FieldValue("employeeNumber", Nothing)
>
Les Matthews Guest



Reply With Quote

