Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

miniThomas

@miniThomas
About
Posts
46
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Custom control inside UpdatePanel throws warning
    M miniThomas

    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

    ASP.NET debugging question announcement

  • Custom control inside UpdatePanel throws warning
    M miniThomas

    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

    ASP.NET debugging question announcement

  • How to sort Custom class which is of type array as per one of its value
    M miniThomas

    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

    C# data-structures tutorial

  • How to sort Custom class which is of type array as per one of its value
    M miniThomas

    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

    C# data-structures tutorial

  • Bitkoo KeyStone Provider
    M miniThomas

    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

    ASP.NET csharp asp-net tutorial

  • Bitkoo KeyStone Provider
    M miniThomas

    Does anybody have knowledge of how to implement Bitkoo Keystone with ASP.Net 2.0

    Best Regards, Mini Thomas

    ASP.NET csharp asp-net tutorial

  • Serialization Invalid cast exception
    M miniThomas

    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

    XML / XSL json help

  • Serialization invalid cast exception
    M miniThomas

    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

    ASP.NET json help

  • ActiveDirectory
    M miniThomas

    I have not worked on Active Directory except for Authenticating User LoginId and Password.

    Best Regards, Mini Thomas

    .NET (Core and Framework) question

  • ActiveDirectory
    M miniThomas

    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

    .NET (Core and Framework) question

  • Adding Groups In Active Directory
    M miniThomas

    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

    C# windows-admin question

  • Softwares for integration of Card swipe machine with .net application
    M miniThomas

    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

    Web Development csharp tutorial question

  • Softwares for integration of Card swipe machine with .net application
    M miniThomas

    Hi, I want to integrate credit card swipe machine data into .Net web application. How to go about it? Thanks Mini

    Web Development csharp tutorial question

  • Softwares for integration of Card swipe machine with .net application
    M miniThomas

    Hi, I need a software in .Net which can transfer data of credit card swipe machine to the software. Thanks, Mini

    ASP.NET csharp

  • Query not returning distinct value
    M miniThomas

    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

    Database database

  • ODP.Net
    M miniThomas

    I am unable to install ODP.Net 2 version. Does anybody have its installation steps Thanx, Mini

    Design and Architecture csharp announcement

  • Button click event
    M miniThomas

    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

    ASP.NET question

  • Button click event
    M miniThomas

    Hi Vidya, The code is written On Click event thanx

    ASP.NET question

  • Button click event
    M miniThomas

    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

    ASP.NET question

  • Button click event
    M miniThomas

    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

    ASP.NET question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups