all groups > asp.net > january 2005 > threads for tuesday january 25
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Google search
Posted by Peter Morris [Droopy eyes software] at 1/25/2005 10:31:24 PM
Hi all
I want to put a google search on my website. My options are
1) Create a new <form> outside of my aspx form.
Problem: I have a HeaderControl and FooterControl on each page to give my
site a uniformed look. Placing it outside of the <form> would mean it would
have to come after th... more >>
Accessing a folder from ASP.NET application
Posted by EMW at 1/25/2005 10:09:03 PM
Hi,
I've build a webpage that is running on an intranet network.
I've been asked to put links on the page to folders elsewere in the network
and on another server.
How can I do this?
rg,
Eric
... more >>
Accessing COM+ Component(Part of different Domain envn) from ASPX page
Posted by Kiran Nakhate at 1/25/2005 9:40:18 PM
Hi,
I am Kiran Nakhate working as a Senior Developer in Planetasia, Bangalore.
We are developing an asp.net application which interacts with the COM+
component. This COM+ component supports Transaction context
functionality.Within this context, we are creating multiple database
connections.... more >>
Calling an Event
Posted by thomson at 1/25/2005 9:29:50 PM
Hi all,
i have written codes in the button_click event, My problem is
that i need to call the same functionality written under the
button_click some where else,
One thing i can do is i can create a function and put
all the codes inside that and call. But there is additional function
call invo... more >>
how to prevent postback event for button in a grid
Posted by william at 1/25/2005 9:01:02 PM
Hi,
I have a datagrid, inside there is a templete item, it's button. I want to
do some thing when user click the button, but do not want the postback event
happens. How can I do it?
Thanks.
william... more >>
Common ASPX to Virtual Folder?
Posted by J Smithers at 1/25/2005 9:00:26 PM
I have several ASPX pages (with code-behind logic) that I reuse amongst many
Web sites on the same production server. Currently each Web site has its own
copy of these aspx pages. I was thinking that it might be a good idea to
move these common aspx pages to a new folder and then make them acc... more >>
Question About Inherited WebForm Classes Containing Components
Posted by Mark Olbert at 1/25/2005 8:31:25 PM
I'm confused about the behavior of inherited WebForms under VS/NET 2003.
In the Windows.Forms world, if I create a UserControl with a protected component on it, that
protected component is visible (albeit locked) and accessible in any class derived from the custom
control.
But in ASP.NET, if... more >>
class's in project
Posted by JJ at 1/25/2005 7:25:02 PM
Hi All,
I'm using vs 2003 and created an asp.net app. I had created a bunch of
class's in a folder that I attached to the project. I have a reference set to
the class's but I don't think they compiled with the project dll. I get a ref
object error on the webserver trying to find the class'... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
SessionID
Posted by Kenny at 1/25/2005 7:10:07 PM
Hi,
I have created an ASPX
Dim ss As HttpSessionState
ss = HttpContext.Current.Session
HttpContext.Current.Session("tesAt") = "testValue"
Response.Write(ss.SessionID() & "|<br>")
Response.Write(HttpContext.Current.Session("tesAt") & "|<br>")
Response.Write(HttpCont... more >>
Changing control sizes
Posted by Greg Smith at 1/25/2005 7:10:07 PM
I wrote an ASP.Net application and it looks great in IE for Windows. If I
run it on IE for Mac or FireFox the web form controls resize and it looks
like somebody hit it with an ugly stick.
How do I get the web form controls to hold their size in different browsers?
Any help is greatly app... more >>
Want to confirm: is it OK to put more than 1 assemblies into one IIS application
Posted by Edward Yang at 1/25/2005 7:04:31 PM
In my test, I have two web applications app1 and app2, and I configure
them as follows in IIS:
$/comboapps
|--web.config
|--bin
| app1.dll
| app2.dll
|--app1
| form1.aspx
| web.config
|--app2
| form1.aspx
| web.config
(Of course, I have to remove authenticat... more >>
Eval code and AppDomains
Posted by Joe Fallon at 1/25/2005 5:40:26 PM
I have some complex logic which is fairly simply to build up into a string.
I needed a way to Eval this string and return a Boolean result.
This code works fine to achieve that goal.
My question is what happens to the dynamically created assembly when the
method is done running? Does GC take ... more >>
ActiveX help
Posted by Rob T at 1/25/2005 5:19:06 PM
I'm hoping someone can point me in the right direction...I've been picking
through MSDN all day and I'm more confused now what I was when I started
this! Hopefully I have the right terminology.... I'm a VB
programmer....C# is basically greek to me.........
I want to create an ActiveX con... more >>
Unwanted spaces added by Validators
Posted by tshad at 1/25/2005 5:18:55 PM
I have the following on one of my Textboxes:
<asp:RequiredFieldValidator
ControlToValidate="email"
Text="Email Required"
runat="server" />
<asp:RegularExpressionValidator ControlToValidate="email" Text =
"Invalid Email Address!"
... more >>
Windows Services
Posted by mp at 1/25/2005 5:05:59 PM
I start a service and I have the following code:
//This code is Service2
if(Directory.Exists(pathFinal) && Directory.Exists(PathIntermediate))
{
m_threadFinal = new Thread(new System.Threading.ThreadStart(BuildFile));
m_threadFinal.Start();
}
private void BuildFile()
{
... more >>
Like keyword
Posted by Patrick at 1/25/2005 5:03:54 PM
Hi Group
I have one column which can be either Null or with some value.
I have one filter criteria in From End with
"All", 'RTF Yes' and 'RTF No'.
Depending on the filter selected by user i have to select the pertaining
rows as below
If Filter "All" select all rows from table
if Filter =... more >>
<customErrors> set to Off - Still doesn't work
Posted by Maureen at 1/25/2005 4:59:05 PM
Hi:
Our ASP.NET webapplication works on our development webserver, but fails on
our production webserver - I
cannot get any detailed error information:
-It is an application
-Mode in <customErrors> is set to Off (case is correct)
-Cannot get any detailed error messages
-Both dev and prod s... more >>
Ways to validate form before submitting
Posted by Wysiwyg at 1/25/2005 4:56:06 PM
I need to validate a form to ensure that all of the fields add up correctly.
I can't do this while the user is entering data since validation needs to be
done after the entry is completed. What's the "best" way to validate prior
to submitting?
I could add an onsubmit attribute to the form whic... more >>
Viewstate in Session
Posted by MattC at 1/25/2005 4:20:08 PM
With respect to Peter Bromberg's article (
http://www.eggheadcafe.com/articles/20040613.asp ) I wish to store my
viewstate info in the Session object rather than the cache (as it is per
user info). I have tried the following but am unable to serialize the
viewstate??
protected override v... more >>
_vti_cnf
Posted by J Smithers at 1/25/2005 3:25:40 PM
What are the [\_vti_cnf] folders for?
... more >>
DataList Paging
Posted by David at 1/25/2005 3:23:13 PM
Hello.
How can I enable and manage paging capability on DataList control like
DataGrid?
Thank you.
... more >>
adding items to <asp:ListBox> via javascript
Posted by Ryan Taylor at 1/25/2005 3:20:28 PM
Hello.
I have an application where I need the user to be able to add items to a
listbox. I've implemented this via javascript. The listbox is an
<asp:ListBox>. However, when the user submits the form those items do not
get posted. My listbox.Items.Count always returns 0.
I want the user to ... more >>
BackColor on Label doesn't seem to work
Posted by tshad at 1/25/2005 3:02:41 PM
Why doesn't BackColor on a label work (ForeColor works):
Dim theAnswer as Label
theAnswer.ForeColor = System.Drawing.Color.yellow
theAnswer.BackColor = System.Drawing.Color.green
BackColor on DataGridItem works fine.
Dim oGridItem as DataGridItem
oGridI... more >>
DataBinding and drop-down lists
Posted by Sankar at 1/25/2005 2:38:50 PM
There is no dearth of this subject in this group, but I am not sure if
it answers this question. If this question is stupid, please let me
know it is and excuse my ignorance.
SQL Query: select user_id,first_name,last_name from user
I have a drop-down list that needs to fill in the name of th... more >>
ky with http in value causes debug to fail
Posted by JerryK at 1/25/2005 2:31:39 PM
HI,
If add a key of the form
<add key="mykey" value=http://somewhere.com?id= />
to my web.conmfig I get an error that it can't debug in Visual Studio. Has
anyone seen this before?
jerry
... more >>
VisualStudio.net asp.net and DB question
Posted by Kurt Schroeder at 1/25/2005 2:31:04 PM
can anyone out there give me a little advice concerning the common way to add
database queries to a form? I'm doing it manually now, but it appears that it
can be done /w drag and drop. So far the result is just way too confusing. Is
there an artical or book that can help me get the most out o... more >>
sub-selecting a DataTable?
Posted by Eych at 1/25/2005 2:25:06 PM
Here's an example:
Dim dsMyData As DataSet
dsMyData = CallWebService(Param1,Param2)
Dim dtUsersTable As DataTable = dsMyData.Tables("Users")
I have a Web service that fills dsMyData with a couple tables.
My question is, from dsMyData.Tables("Users"), which contains all
users, how can I... more >>
Debugging Woes (Part II)
Posted by Tyrant Mikey at 1/25/2005 1:54:39 PM
New oddness in debugging ASP.NET Web applications.
(First off, I'm using VS.NET 2k3 to write an ASP.NET Web application in
Visual Basic .NET.)
I have a base class, which derives from System.Web.UI.WebForm. That
class contains a number of methods that I want to use on virtually all
of my pag... more >>
Decode html in SQL Server
Posted by Susan Geller at 1/25/2005 1:50:27 PM
I have an c#.net app which writes to a sql server db and in one table,
stores data with html coding. (string strNote =
HttpUtility.HtmlEncode(txtNote.Text);) I want to report on this data from
SQL Server using an Access adp application. Is there a way in SQL Server
that can decode the html so... more >>
Web Application needs to detect and retrieve emails
Posted by Richard Thornley at 1/25/2005 1:33:13 PM
Hello,
I was just been given a project and I have some questions on how to
accomplish the first part of the task.
If a user sends an email to a specific email address I need to detect that
an email is waiting and then retrieve the email. I will then process the
email but that par... more >>
Run a .Bat file on the client machine
Posted by sonny at 1/25/2005 1:33:11 PM
Is there a way to do it?
thx...sonny... more >>
GetLastWriteTime for files on network
Posted by Kevin F (Michigan) at 1/25/2005 1:33:08 PM
I'm trying to use ASP.NET (VB.NET) to get the last update date for certain
files on our network. These files are NOT on the same computer as the IIS
instance. ASP.NET apps run under the ASPNET user local to the Web server,
and I can't add the ASPNET user to the Windows groups which have perm... more >>
Reading/Writing Session variables from a Static class
Posted by aliendolphin NO[at]SPAM gmail.com at 1/25/2005 1:02:59 PM
I'm having a strange problem possibly with Session variables for one
user being accessed by another.
I use a static utility class with static methods which get and set
certain Session variables. For Example:
public static string UserEmail
{
get { return HttpContext.Current.Session["email']... more >>
How to access files in %windows folder%/system32 by asp.net/c#??
Posted by RC at 1/25/2005 1:01:10 PM
I am going to read a file at windows system32 folder.....I found that I
cannot access the folder by classes in System.IO...authentication
failure....how can I read the files?
Thanks
... more >>
bit setting
Posted by fd123456 NO[at]SPAM hotmail.com at 1/25/2005 12:57:33 PM
Tom,
MWells is right, this is the .Net way of manipulating bits. Besides,
your question was rather ambiguous :
>> Is there an easy way to set a bit and clear a bit using a sub -
something
>> like:
Did you mean "are there any functions in the framework that resemble
the "bittest", "bitse... more >>
Best way to Insert multiple records into a table?
Posted by Ian Macey at 1/25/2005 12:39:01 PM
I am wanting to Insert multiple records into a table, and although I =
have some working code I feel that there must be a better way. The =
purpose of the code is to do a directory listing of a sub-directory and =
for each file listed insert a record into a temporary table.
Can anyone help?
... more >>
code behind issues Run time errors help!
Posted by Kurt Schroeder at 1/25/2005 12:23:06 PM
Still new to code behind so i'm not sure what the problem is (i'm using
visualStudio.net for the first time) like my last question i'll bet this has
a quick answer. thanks
kes
here is the error: and please for give the excessive text
Object reference not set to an instance of an object.
D... more >>
Global subroutines
Posted by fd123456 NO[at]SPAM hotmail.com at 1/25/2005 12:22:58 PM
Er... Sorry to interrupt, but you CAN put methods and functions in the
Global.asax file. You just have to make them static (Shared in VB).
You can even use functions normally not available outside of a page,
like LoadControl, like this :
in an aspx code-behind file, for instance in the Page_Lo... more >>
ViewState, EnableViewStateMAC and two IP addresses in one session
Posted by tstiles NO[at]SPAM btinternet.com at 1/25/2005 12:07:39 PM
Hi.
I am running an ASP.NET app that is using ViewState.
Everything is fine apart from an issue with viewstate.
Is the client IP address taken into account in encrypting viewstate?
Here is my scenario. Connect to internet. Obtain IP address. Log in to
site. Use site. Get to a page that c... more >>
Edit in DataGrid
Posted by rkbnair at 1/25/2005 11:55:07 AM
I have a databound datagrid in aspx. Is it possible to make all rows editable
so that the user can click on the update button a single time instead of on
every record?
How can we make the grid editable in all rows at the same time?... more >>
In DataGrid OnClick Event i want to show Some color
Posted by karunakar at 1/25/2005 11:50:21 AM
Hi All
In datagrid OnMouseOver iam showing some color
Onmouseout also working fine .
Here my problem is when ever click the pariculat row in DataGrid iam showing
red color that time i am not getting any problem .
when ever mouse was changed paricular row that time color is lossed
"When ev... more >>
add summary rows to datagrid
Posted by Anon at 1/25/2005 11:49:03 AM
hi,
i need to subtotal a column in a datagrid and display the result. I have
come to a point where i can subtotal the columns in the datagrid but cannot
display the result.
ex.
Private Sub dgTimesheet_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridIte... more >>
Users are being prompted to login to our IIS server, when trying to view Adobe report from CR for .NET
Posted by Rod at 1/25/2005 11:47:18 AM
We've implemented forms authentication with Active Directory. We're slowly
working on converting our Crystal Reports' reports from a VB6 application
into Crystal Reports for .NET in our ASP.NET application. So far, we've got
2 done but we have several more to go.
Anyway, we've discovered ... more >>
IIS related ASP.NET page question
Posted by nzanella NO[at]SPAM cs.mun.ca at 1/25/2005 11:35:14 AM
Hello,
I am using ASP.NET with IIS. I have set up a virtual directory called foo
so that when I point my web browser to http://localhost/foo/index.aspx I
can view the output of my ASP.NET web page index.aspx. What I would like
to do is the following:
1. point my web browser to http://localh... more >>
refreshing user controls
Posted by Phil Townsend at 1/25/2005 11:23:10 AM
I have a page that contains one user control. There are times when I
would want the web form to trigger the usercontrol to refresh--or reload
itself. How can I do this? Thanks...
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for... more >>
Datagrid / image button to edit
Posted by rkbnair at 1/25/2005 11:21:02 AM
Is there any way to display an image button instead of the traditional
Edit/Update/Cancel push button in a datagrid (with bound data)?... more >>
Problem with upload
Posted by Mike Logan at 1/25/2005 11:09:05 AM
I have a web application that allows uploads. Sometimes on uploads, the IE
Progress bar will fill up all the way and then display "Page cannot be
displayed", not a 500 error, just a standard cannot find dns page. This
problem happens on different size files. I have gotten 1 MB files to wor... more >>
Urgent.... Smooth Refresh
Posted by Bryan Young at 1/25/2005 10:56:35 AM
I am trying to smoothly refresh a page on an interval. I am using
setInterval to set this up. When the interval expires, I do a
document.form.submit(). When this line of code runs, Internet Explorer
crashed with exception code 0xc0000005 mshtml.dll at address
0x000000007d55833f. This is ... more >>
Javascript Quickie
Posted by Craig G at 1/25/2005 10:50:28 AM
i have a custom validator control that fires on the text changed event of a
field, but the validator wont fire when the field is blank, so i was looking
at using a bit of clientside script.
i not the hottest at Javascript, so i was wondering how i would go about
checking if a field has been po... more >>
read web.config users authorized for a cerrtain path
Posted by Dan at 1/25/2005 10:47:53 AM
hi ng,
i'd like to add control elements on a page, but only for users that are
authotized to access a certain location, defined in web.config.
my question:
is it possible to read the <allow users="" /> section of a <location> in
web.config, or do i have to add these users as key-value eleme... more >>
Textbox Question
Posted by Nick at 1/25/2005 10:31:55 AM
I've got a page with a bunch of textboxes that are populated from a db.
When I click a button it's supposed to read the values of the textboxes and
run a stored procedure - but it isn't quite working.
The button runs the sp, but doesn't use the current text in the textbox - it
uses the tex... more >>
ASP.NET compilation generates tons of DLLs
Posted by Bogdan Nedelcu at 1/25/2005 9:47:50 AM
Hello,
I have a asp.net project with some aspx and a lot of ascx. The IIS memory
grows as it compile each item. I saw in the temporary files that for each
aspx, ascx there are arount 4 files generated, one of them being a DLL.
Is there a way to precompile everything in one single DLL. The lo... more >>
Validating: If the value EXISTS in Db then show error!
Posted by pmud at 1/25/2005 9:47:02 AM
Hi,
I am using a compare validator in asp.net application(c# code). This is used
for comparing a value enterd by the user against the primary key in the SQL
database. IF the VALUE ENTERED BY THE USER EXISTS IN THE DB , then THE ERROR
MESSAGE OF THE COMPARE VALIDATOR SHOULD BE DISPLAYED.
... more >>
Adding timer control ot form
Posted by csgraham74 NO[at]SPAM hotmail.com at 1/25/2005 9:25:06 AM
Hi there,
Havent done much of this HTML / ASP.NET development so i hope someone
can help.
Basically i need to create some type of timer on my page and display 4
different labels with a message every 7 seconds. finally i need to
call a function at the end of the 28 second phase.
not sure ... more >>
ASP.NET 2.0 release???
Posted by Martin Olson at 1/25/2005 9:22:13 AM
Just curious -- does anyone know an approxomate release date for ASP.NET 2.0
final???
thx ...
... more >>
problems with caching after the browser is shut
Posted by Neil Cooper at 1/25/2005 9:15:13 AM
Hi
Not sure if this the right group or not but here it goes.
Here is a part excerpt of my code in the Page_Load Event
'Create cache if the cache object doesn't exist yet
If IsNothing(Cache.Get("dsAllResults")) Then
' Use various SelectCommand to fill the 4 SqlAdapters
' Add all tab... more >>
Validators not seeming to use CSSClass
Posted by tshad at 1/25/2005 8:53:03 AM
Are Validators able to use CSSClass?
I have the following:
<asp:RegularExpressionValidator
ControlToValidate="txtEmail" CssClass="errorMessage"
Text = "Invalid Email Address!"
ValidationExpression="\S+@\S+\.\S{2,3}"
runat="ser... more >>
ASP.NET Debugging Woes
Posted by Tyrant Mikey at 1/25/2005 7:50:10 AM
Okay, I'm stumped. I'm writing a Visual Basic .NET Web Application and
everything's been going marvelously until now. All of a sudden, Visual
Studio will not debug the application. The application runs, but all my
breakpoints are ignored.
I have verified the following:
1. ASP Debugging is e... more >>
how do i display column name and rows in datalist
Posted by ae at 1/25/2005 7:43:07 AM
My datareader looks like this where dtrItemList is the datareader and
chklExceptionList is my checkboxlist. the rows come in just fine, but I need
help also including the name of the columns for my rows. I need them listed
only one time on top. Any idea? Thanks in advance.
while (dtrIte... more >>
Need with Error Message
Posted by Mark at 1/25/2005 7:31:07 AM
I'm just starting out in an introductory ASP.Net course, and am trying to run
a simple program but keeping getting an error.
I'm running XP, have installed Internet Information Services (5.1) ,
Microsoft .Net Framework (English) v1.0.3705 and Microsoft .Net Framework SDK
(English) v1.0a on ... more >>
custom error page for Statuscode 401.2 - Access Denied
Posted by Rich at 1/25/2005 6:25:49 AM
Hi All,
I have a windows authenticated web site - a sub directory
has been secured by denying various roles. When access is
denied the default error page for 401.2 is displayed -
How can I customise my own access denied page?
I have tried custom error tags in the web.config but that
does... more >>
ASP.NET and Window XP Home Edition
Posted by david c. at 1/25/2005 5:41:02 AM
Hi,
Please tell me if there is some way to practice ASP.NET application in my
computer which has Window XP Home Edition?...The ASP.NET manual told me that
its application can only run on Window XP professional. I cannot get risk of
what I have in my hard drive to reinstall the XP profession... more >>
Browser window suddenly minimizing in ASP.NET?
Posted by Christopher at 1/25/2005 5:37:07 AM
We have a specific javascript call made from a standard HyperLink control
that is opening up a link in a new window using the window.open javascript
function. The page is on ASP.NET. Up until a few weeks ago things worked
very well though recently we started to see the pop-up browser window ... more >>
LinkButton in a datagrid???
Posted by Tim::.. at 1/25/2005 5:31:08 AM
Can someone tell me how I do a response.redirect using a linkbutton in a
datagrid!
I want to use the record id in a database to send a querystring to an HTML
editor so that users are able to edit a particular page they have chosen from
a datagrid!
EG: If a user clicks the linkbutton in a... more >>
HTML Tags in input form
Posted by Joe via DotNetMonster.com at 1/25/2005 5:16:03 AM
Hi,
I have an form that saves to a database. I would like the user to be able to enter HTML tags into the Textbox Control fields but I get an error message when entering HTML tags:
A potentially dangerous Request.Form value was detected from the client (pArticleText="Test<p>").
I'm new to ... more >>
What's wrong???
Posted by Tim::.. at 1/25/2005 5:15:03 AM
Can someone please tell me what is wrong with the following code!
I have a record in the datareader but it isn't showing up and niether is the
label... I presume there is a problem with this code!
Thanks
...CODE..
Dim myReader As SqlDataReader = cmd.ExecuteReader()
Dim hasRows ... more >>
DataGrid Events
Posted by Jim Heavey at 1/25/2005 4:39:04 AM
Which event would I use to reformat a date which is databound to a field in
my data table? I have a column which has a date of 12/31/9999 which is a
default date meaning no date has been entered and I want the grid to show
this date as spaces if it contains that value, otherwise I want to for... more >>
datagrid with checkboxes
Posted by a NO[at]SPAM b.com at 1/25/2005 4:17:41 AM
i have a datagrid with 2 columns.
the 1st column contains an id which will be used by the database for
the selected checkbox records.
the 2nd column is a template column containing a server checkbox
control.
where i'm at:
i can retrieve a count of the selected checkboxes, but don't know ho... more >>
Check for Datasource content
Posted by Tim::.. at 1/25/2005 2:51:06 AM
Can someone tell me what operator I use to check if the datasource has any
content?
Thanks
Exception Details: System.InvalidCastException: Operator is not valid for
type 'SqlDataReader' and string "".
Source Error:
Line 62: Dim myReader As SqlDataReader = cmd.ExecuteReader()
... more >>
HELP... returning variable
Posted by Tim::.. at 1/25/2005 1:27:04 AM
Can someone please help... I'm kind of new to asp.net and VS.net and need to
know how to get the value of a variable in the following funtion into a sub
on another aspx page!
Can someone please help!
Thanks
...CODE..
Public Function GetOfficeName() As String
Dim Myconn As ... more >>
Formatting a variable for a WHERE statement
Posted by Justin at 1/25/2005 1:21:01 AM
I have a variable string "myvar" and I need to pass it to the WHERE clause of
a SELCET statement I have tried myvar.ToString(), Cint, parse and convert.
The Select statement works fine when I pass a value manually eg WHERE mycust
= "50".
Any ideas?
Thanks, Justin.... more >>
Windows-User-Control in ASPNET with Firefox
Posted by Jens Hofmann at 1/25/2005 1:15:47 AM
Hello,
is it possible to display a windows-user-control within a aspnet-page in
FireFox?
Thx
Jens
... more >>
Add DataTable to ViewState
Posted by Kiran at 1/25/2005 1:14:57 AM
Hi,
Can Someone tell me how to add a DataTable to ViewState.
Thanks
Kiran
... more >>
Dataset value is nothing
Posted by Kiran at 1/25/2005 1:14:08 AM
Hi,
I have user control that I am using it for a Web Page.
The User Control has a Dataset declared as class variable.
When I call a function of that User Control from Web page, I am assigning
the dataset a value.
When I make someother function call of that User Control, the Dataset val... more >>
|