No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
[CODE] objEffort.IssueDate = string.IsNullOrEmpty(txtDate.Text) ? (DateTime?)null : DateTime.ParseExact(txtDate.Text.Trim(), "dd/MM/yyyy", null); [/CODE] I want to pass "07/20/2011 12:10 PM" this format to database . Please Reply me how can i do this. It's bit urgent
Just drag the Image Path From the Solution Explore .Check whether images are loading or not.. if it is loding the images then change path to ../Images
Hi. I have a button to which i want to pass a commandargument(s) which are selected values of two different dropdowns. please suggest me how can i pass the values???
Hi Rahi, After entering the name in the textbox call a AJAX method onblur or onfocus out of the textbox and pass the entered text to the AJAX method and code behind call use webmethod which will connect to DB and Fetchs the Result according to the text. and display …
Please suggest in what way u want to return the values
Please Give some more details about ur Question
while Saving the Data To the Database please write the following like in the .cs file. Hope this may help u [CODE] CultureInfo cinfo = new CultureInfo("hi-IN");[/CODE] CultureInfo Provides information about a specific culture (called a "locale" for unmanaged code development). The information includes the names for the culture, the …
[code] public bool ChangePassword(int empId, string oldPwd, string newPwd, out bool success) { bool _couldSave = false; success = false; Database dbObj = null; DbCommand dbCommand = null; dbObj = DatabaseFactory.CreateDatabase(); dbCommand = dbObj.GetStoredProcCommand("Users_ChangePassword");// passing the Stored Procedure) dbObj.AddInParameter(dbCommand, "@intEmpId", DbType.Int32, empId);// passing Parameters to the Stored Proc dbObj.AddInParameter(dbCommand, "@chvOldPwd", …
The End.
prateekpk5