Hi, When I debug the solution there is an error in Script resource file. It shows some bad data at runtime. Unable to figure out the error. Thanks
Best Regards, Mini Thomas
Hi, When I debug the solution there is an error in Script resource file. It shows some bad data at runtime. Unable to figure out the error. Thanks
Best Regards, Mini Thomas
Hi, I have a custom control inside update panel. when i debug the solution there is a warning as "object not found" what could be the reason? Thanks
Best Regards, Mini Thomas
Hi Guys, I have alerady tried with IComparable but it doesn't return sorted array, maybe I am implementing in the wrong way. Can you guys help me out with the exact implementation? This payment Array is being accessed in another class say PaymentHistory and I wanna sort as per date the Payment array in PaymentHistory class.
Best Regards, Mini Thomas
Hi, I am having a custom class which is of type array. one of its elements is date. I want all elements of this class to be be sorted on basis of date. e.g Class Payment { date; amount; order; } Another calss { Payment[] pay=new Payment[4]; for(int i=0;i<3;i++) { pay[i]=new Payment(); pay[i].date="Monday"; pay[i].amount=5; pay[i].order=abc; } //sort pay as per date that is populated in pay say pay[0].date=Monday; pay[1].date=Wednesday; pay[2].date=Tuesday; I want the entire row of pay to be sorted on basis of date. } Thanks, Mini
Best Regards, Mini Thomas
Hi DGrinstein, Thanks for your reply, really apppreciate your help! I am able to Authenticate by using AuthComponent however it is the authorization part especially the KeyStone Role Provider that we are not able to explore. I found out that not all the methods are implemented in Keystone for the UserManagement module. for e.g GetAllRoles(), AddRole() etc As an alternative we are calling the webservice directly for accessing these methods. My question is there any other alternative way in which Keystone exposes its UserManagement methods so that we can call them directly rather than accessing through web service?
Best Regards, Mini Thomas
Does anybody have knowledge of how to implement Bitkoo Keystone with ASP.Net 2.0
Best Regards, Mini Thomas
Hi, I am trying to serialize an object, I am getting exception as "Unable to cast object Type A to Type B". Please help me in finding soultion Thanks, Mini
Best Regards, Mini Thomas
Hi, I am trying to serialize an object, I am getting exception as "Unable to cast object Type A to Type B". Please help me in finding soultion Thanks, Mini
Best Regards, Mini Thomas
I have not worked on Active Directory except for Authenticating User LoginId and Password.
Best Regards, Mini Thomas
Hi, I am using CustomRoleProvider for connecting to ActiveDirectory. My requirement is to: - Add/Edit Groups, - Add/Edit Department(Groups will belong to a Department), - Add/Edit/Delete Users, - Add/Edit Roles, - Add/Edit Permissons and - Add/Edit Role with subRoles under it. My questionis is can we implement these features in ActiveDirectory?
Best Regards, Mini Thomas
Hi, I am using CustomRoleProvider for connecting to ActiveDirectory. My requirement is to: - Add/Edit Groups, - Add/Edit Department(Groups will belong to a Department), - Add/Edit/Delete Users, - Add/Edit Roles, - Add/Edit Permissons and - Add/Edit Role with subRoles under it. My questionis is can we implement these features in ActiveDirectory?
Best Regards, Mini Thomas
Hi, I am developing a web based .Net application and I want the application to pick up data from software which captures the data from credit card swipe machine. Thanks, Mini
Hi, I want to integrate credit card swipe machine data into .Net web application. How to go about it? Thanks Mini
Hi, I need a software in .Net which can transfer data of credit card swipe machine to the software. Thanks, Mini
Hi, I am firing a query as "select distinct(trim(opp_name)) from tblOpps" but this query returns ============ Renewal Services Renewal New I want Renewal to appear only once not twice Thnaks, Mini
I am unable to install ODP.Net 2 version. Does anybody have its installation steps Thanx, Mini
Hi Guys, here is code: function checkDotOnly() { if (document.form1.txtcustomerName.length!=0) { if((document.form1.txtcustomerName.value==".")||(document.form1.txtcustomerName.value==". ")||(document.form1.txtcustomerName.value==" ")) { alert("Please Enter Valid Customer Name."); /*document.form1.lblErrMsg.value="Please Enter Valid Customer Name."; document.form1.lblErrMsg.disabled=false;*/ return false; } return true; } return true; } protected void imgbtnSearch_Click(object sender, ImageClickEventArgs e) { if (RadioButtonList1.SelectedValue.ToString() == "") { lblMsg.Text = ""; lblErrMsg.Visible = true; lblErrMsg.Text = "Please Select One Option."; PnlSearchResults.Visible = false; } else { if (RadioButtonList1.SelectedIndex.ToString() == "0" && ddlOrderNo.SelectedItem.Value == "-1") { lblMsg.Text = ""; lblErrMsg.Visible = true; lblErrMsg.Text = "Please Select Order Number."; PnlSearchResults.Visible = false; } else { lblErrMsg.Visible = false; fillSearchResults(); } if (RadioButtonList1.SelectedIndex.ToString() == "1") { if (txtcustomerName.Text == "") { lblMsg.Text = ""; lblErrMsg.Visible = true; lblErrMsg.Text = "Please Enter Customer Name."; PnlSearchResults.Visible = false; } else { lblMsg.Text = ""; lblErrMsg.Visible = false; fillSearchResults(); //Response.Write("domain=" + txtDomainName.Text + "cust=" + txtcustomerName.Text); } } } }//imgbtnSearch_Click thanx
Hi Vidya, The code is written On Click event thanx
The code is in C# I have written a javascript code on click event of button following is the code: Also once condition is true i hv displayed a grid view getting data from db function checkDotOnly() { if (document.form1.txtcustomerName.length!=0) { if((document.form1.txtcustomerName.value==".")||(document.form1.txtcustomerName.value==". ")||(document.form1.txtcustomerName.value==" ")) { alert("Please Enter Valid Customer Name."); /*document.form1.lblErrMsg.value="Please Enter Valid Customer Name."; document.form1.lblErrMsg.disabled=false;*/ return false; } return true; } return true; } thanx
When I click once on button the event is not fired..when I click twice then only the event is fired...what culd the proble b? thanx