hi... what your thinking is rite..... If the DataRow that is passed as a parameter is in a detached state, it is ignored, and no exception is thrown while importing the datarow...
Regards, Sandeep Kumar.V
hi... what your thinking is rite..... If the DataRow that is passed as a parameter is in a detached state, it is ignored, and no exception is thrown while importing the datarow...
Regards, Sandeep Kumar.V
Hi you find info in below link.... http://www.albionresearch.com/misc/urlencode.php
Regards, Sandeep Kumar.V
Hi, Inorder to solve your problem you need to do follow the below steps. 1)on sucess full login before redirecting to members page keep the username in session. 2)on page load of members page check for the session contain some value.. if it contains some value then the use is a logged in user else if it is null redirect user to login page. 3)on clicking logout clear the session so that after clicking if user copy pastes that members page link also he will be redirected to login page has you cleared session.
Regards, Sandeep Kumar.V
Hi..... I think there is no formatter to format like that...... in dotnet you can acheive that.....like..... eg: <asp:BoundField **DataFormatString="{0:dd-MMM-yyyy}"** DataField="ShippedDate" HeaderText="Shipped Date" />
Regards, Sandeep Kumar.V
give same namespace for both user controls then same as classes you can access them.....
Regards, Sandeep Kumar.V
John Sundar wrote:
this.MenuPlaceHolder.Controls.Add((UserControl)LoadControl("file1.ascx"));
i guess above code should be like below one...... this.MenuPlaceHolder.Controls.Add((UserControl)LoadControl("\output\file1.ascx"));
Regards, Sandeep Kumar.V
Hi... for the file A1 which is in the folder suppose give namespace as namespace TestNamespace { public class A1 { ............ } } for the file which is out side the folder give same name space like... namespace TestNamespace { Public class out1 { } } now if you want ot access any for the files you can directly call that cllas name in your class file.... like.... namespace TestNamespace { Publc class out2 { out1 o=new out1(); A1 a=new A1(); } } Hope with this you can get some thing...... :)
Regards, Sandeep Kumar.V
John Sundar wrote:
select convert(varchar,column1 as "Test column",106) from tbl_name
the query is not correct..... select convert(varchar,column1,106) as "Test column" from tbl_name
Regards, Sandeep Kumar.V
hi.... you can achieve that by using namespaces. Give same namespace for all the pages that u want to access.
Regards, Sandeep Kumar.V
Hi can acheive that in two ways.
John Sundar wrote:
i want to change those date in (23-Jul-2007).
Regards, Sandeep Kumar.V
Hi,
soniasan wrote:
sqlcommand1.ExecuteNonQuery()
comment the above line and try to execute the code...
Regards, Sandeep Kumar.V
Hi,
N a v a n e e t h wrote:
I thought of using locking.
Thats a good idea and it will work fine.......I used same concept in one of my projects.
Regards, Sandeep Kumar.V
Hi.... you need to change the below lines...
mon***z wrote:
lst_emp.DataTextField=objds.Tables[0].Columns["txtval"].ToString(); lst_emp.DataValueField=objds.Tables[0].Columns["emp_id"].ToString();
to...... lst_emp.DataTextField = "txtval"; lst_emp.DataValueField = "emp_id";
Regards, Sandeep Kumar.V
Hi, As u have not set any sql command for GDataAdapter u r getting that error.....
Regards, Sandeep Kumar.V
Hi..... By using GZipStream class you can compress and decompress the file..... GZipStream Example Link[^]
Regards, Sandeep Kumar.V
tonymathewt wrote:
Is it possible to send and recieve a parameter or value from a window opened from a parent window.
Yes,by using javascript class Opener. Example for using Opener Class OpnerWindow
Regards, Sandeep Kumar.V
Hi anthor way of doing the things..... function close() { return window.confirm("Click ok to close"); }
Regards, Sandeep Kumar.V
Welcome........:)
Regards, Sandeep Kumar.V
Hi....here is the query........ SELECT ProductID from tablename where SNo = (SELECT MAX(SNO) from tablename)
Regards, Sandeep Kumar.V
Hi here is the code.......... function close() { event.returnValue = "Any string value here forces a dialog box to appear before closing the window."; }
Regards, Sandeep Kumar.V