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
N

Nath

@Nath
About
Posts
31
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to make this
    N Nath

    what are you trying to say

    Database tutorial

  • How to make this
    N Nath

    About me adam763 aadams CaringIn Action adam763 aadams LocalBusiness adam763 aadams From My Desk adam763 aadams About me agga924 aaggarwal From My Desk agga924 aaggarwal LocalBusiness agga924 aaggarwal About me aldr231 aaldridge From My Desk aldr231 aaldridge About me alkh290 aalkhazshvilly LocalBusiness alkh290 aalkhazshvilly From My Desk alkh290 aalkhazshvilly About me alti800 aaltis From My Desk alti800 aaltis About me arev258 aarevalo From My Desk arev258 aarevalo About me arri922 aarriaga1 From My Desk arri922 aarriaga1 About me bakk607 abakken bout me bart768 abarton From My Desk bart768 abarton i need the data to be present as in the first column repeated text is there for suppose Title TitleCount About Me 23 after this i have to display Title UserName Usersite About Me barttt xxxxxx About Me xxxx xxxxx About Me xxxx xxxxx

    Database tutorial

  • Stored Procedure
    N Nath

    i have one table(EMPLOYEE), in that columns are(Emp_Id,First_Name,Last_Name,Gender,Mobile_No,Email_id,Blood_Group); in my front end page having 4 text boxies.that is emp_id,emp_name,mobile_no,blood_group.(here search buttion), whenever we give id( or) name (or )mbno( or) bloodgroup(or) any combinations then result come with (Emp_Id,First_Name,Last_Name,Gender,Mobile_No,Email_id,Blood_Group)display. i try some code but result is not coming.code is following ---------------------------- DELIMITER $$ CREATE PROCEDURE sp_srch(in empid varchar(10), empname varchar(45),mobileno varchar(15),bloodgroup varchar(5)) BEGIN declare str varchar(255); declare str1 varchar(20); declare str2 varchar(20); set str ="select Emp_Id,First_Name,Last_Name,Gender,Mobile_No,Email_id,Blood_Group from Employee where "; if(empid!= '') then set str= Concat(str ,"Emp_ID like '%", empid ,"%'and "); end if; if(empname!='') then set str= Concat(str , "First_Name like '%" , empname ,"%'and "); end if; if(mobileno!='') then set str= Concat(str , "Mobile_No like '%" , mobileno ,"%'and "); end if; if(bloodgroup!='') then set str= Concat(str ,"Blood_Group like '" , bloodgroup ,"%' "); end if; set str1= (SUBSTR(str,-6)); set str2 = (SUBSTR(str,-4)); if(str1='where') then set str= replace(str,'where',''); end if; if(str2='and') then set str= replace(str,' and',''); end if; select str; END $$ DELIMITER ;

    Database sharepoint database

  • Web Deployment error for WebUserControl event [modified]
    N Nath

    Could u provide the information details whats the error or at the root itself can u specify it clealy

    ASP.NET sysadmin help

  • on keypress enter to submit login details IE is working but in firefox not working
    N Nath

    Hi, on pressing enter button to submit the login details it is working in IE but it is not working in Firefox could anyone help iam using the javascript function function doClick(buttonName,e) { //the purpose of this function is to allow the enter key to //point to the correct button to click. var key ; if(window.event) key = window.event.keyCode; //IE else key = e.which; //firefox if (key == 13) { //Get the button the user wants to have clicked var btn = document.getElementById(buttonName); if (btn != null) { //If we find the button click it btn.click(); event.keyCode = 0 } } } Thanks & Regards, Nath

    ASP.NET javascript help

  • Problem on Login page with Register page
    N Nath

    function doClick(buttonName,e) { //the purpose of this function is to allow the enter key to //point to the correct button to click. var key ; if(window.event) key = window.event.keyCode; //IE else key = e.which; //firefox if (key == 13) { //Get the button the user wants to have clicked var btn = document.getElementById(buttonName); if (btn != null) { //If we find the button click it btn.click(); event.keyCode = 0 } } } txtEmail.Attributes.Add("onKeyPress", "doClick('" + lnkbtLogin.ClientID + "',event)"); txtPassword.Attributes.Add("onKeyPress", "doClick('" + lnkbtLogin.ClientID + "',event)"); in the master page i kept this coding on keypress enter to login my problem is if i click on register page, if i want to login lying on the register page if i trying to enter emailid and password javascript error is firing for every single letter and if i continue and click on keypress it is firing for the register page and it is not logging in if i click on signin button it is working could you help me Thanks & Regards, Nath

    ASP.NET help javascript tutorial

  • Currently in register page and providing login details to login on keypress enter
    N Nath

    Hi, To all I need the functionality just like in code project how it is for example, before login in the code project just click on register page it transfers to the register page lying on the same page provide emailid and password to login to the code project it is logging.Please anyone help me Thanks & Regards, K. Amarnath

    ASP.NET help tutorial

  • Problem on Login page with Register page
    N Nath

    Microsoft JScript runtime error: Object expected when i was entering a user details in emailid or password for every single letter the same error repeating. This is of due to while i was entering the details to login, the current page is register page Thanks & Regards, Nath

    ASP.NET help javascript tutorial

  • Problem on Login page with Register page
    N Nath

    function doClick(buttonName,e) { //the purpose of this function is to allow the enter key to //point to the correct button to click. var key ; if(window.event) key = window.event.keyCode; //IE else key = e.which; //firefox if (key == 13) { //Get the button the user wants to have clicked var btn = document.getElementById(buttonName); if (btn != null) { //If we find the button click it btn.click(); event.keyCode = 0 } } } this is the javascript function which i used when user cliks on enter button to login. please could you check the functionality of the codeproject dont sign in the page click on register page you will be redirected to the register page at the same time you can login to the code project by giving your user details and click on enter button it is working even when you are in register page i had the similar to that but when i was in register page if i try to enter any letter in the userid and in password javascript error is firing

    ASP.NET help javascript tutorial

  • Problem on Login page with Register page
    N Nath

    Hi, I am getting problem on, i had a login page which it is inherited to the master page means for userid and password will be on the top of the corner page to which login, my problem is if i click on the register page it transfers to the register page but when i try to login from that page error is raising on javascript which i kept the function on key press enter after entering the user details. for example i checked the functionality in the codeproject page username and password, if we click on register page it takes to the register page from here if i enter the user details and press enter it is working .could anyone help to resolve this problem. Thanks & Regards, Nath

    ASP.NET help javascript tutorial

  • How to perform this requirement
    N Nath

    I cant get you what you have studied if you are going to assist me in learning technology i would be greatful and my mail id is mca.nath@gmail.com you can contact me through this maild Thanks & Regards, K. Amarnath.

    ASP.NET javascript tools help tutorial question

  • How to perform this requirement
    N Nath

    Thanks for your help and i was to new to work with javascript and if user clicks on ok then i have to redirect to another page that is happening if on cancel then i have to focus him on a text control. I will try for that. once again very thanks for your help

    ASP.NET javascript tools help tutorial question

  • How to perform this requirement
    N Nath

    I am using this: btnDelete.Attributes.Add("onclick", "if(confirm('Are you sure you want to delete?')) Test1();else return false;") my requirement is to be excute the function test1() but nothing happend and iam also trying in this manner could anyone help me Page.RegisterStartupScript("Confirm", "<script language=JavaScript>Confirm();</script>"); and in the aspx file (desiner) you need to write the following code <script language="javascript" type="text/javascript"> Function Confirm() //Sample Function { var blnConfirm = confirm("sample function to test confirm function"); if(blnConfirm == true) { alert("you have clicked yes"); return false; } else { alert("you have clicked No"); } } </script>

    ASP.NET javascript tools help tutorial question

  • how to check
    N Nath

    Hi folks, some items in checkedlistbox for example the item will be like this (Kishore) kishore@gmail.com i had a string kishore@gmail.com i have to compare this string with the item in checkedlistbox i have completed this but iam getting a error "List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change." Code: if (checkedListBox_MailLst.Items.Count > 0) foreach (string item in checkedListBox_MailLst.Items) { string mailItem=item; checklistItem = mailItem.Split(' '); foreach (string mailId in myMail) { if (checklistItem[2].ToString() == mailId) if(checkedListBox_MailLst.Items.Contains (mailItem)) { int selectedItemIndex = checkedListBox_MailLst.Items.IndexOf(mailItem); checkedListBox_MailLst.SetItemCheckState(selectedItemIndex, CheckState.Checked); } } }

    C# tutorial com help

  • Calling Form from UserControl Layer
    N Nath

    Hi Folks, My project Structure like below (Solution)Solution Name + ProjectName (Test) + Form1.cs + Form2.cs + Library Project(UI Layer) + Usercontrol1.cs + UserControl2.cs how can i call Form1.cs from UserControl1.cs Thanks & Regards Nath

    Windows Forms design question

  • sending sms using C# windows application
    N Nath

    i have to send sms using windows application. If there is anything please let me know

    C# csharp help tutorial

  • sending sms using C# windows application
    N Nath

    Hi, could anyone help me how to send sms using windows application c# how to make that Thanks & Regards Nath

    C# csharp help tutorial

  • linq query
    N Nath

    Hi, To ALL How to check linq query with datetime can anyone suggestme Thanks & Regards, Nath.

    LINQ csharp database linq tutorial

  • sql server group
    N Nath

    Hi To ALL, getting a problem when i was joined two tables and specified distinction but the rows are repeating could anyone give me the suggestion Thanks & Regards, Nath. dt_messageDate str_messge str_constituencyName 2009-01-20 00:00:00.000 Second Test Ichapuram 2009-01-20 00:00:00.000 Second Test Ichchapuram 2009-01-20 00:00:00.000 The last script Ichapuram 2009-01-20 00:00:00.000 The last script Ichchapuram 2009-01-21 00:00:00.000 Test1 Ichapuram 2009-01-21 00:00:00.000 Test1 Ichchapuram 2009-01-21 00:00:00.000 Test2 Ichapuram 2009-01-21 00:00:00.000 Test2 Ichchapuram 2009-01-23 00:00:00.000 asdf sdaaaas Ichapuram 2009-01-23 00:00:00.000 asdf sdaaaas Ichchapuram 2009-01-25 00:00:00.000 Second test Tekkali 2009-01-25 00:00:00.000 test Tekkali 2009-01-26 00:00:00.000 Godavari Anaparthy

    Database database sql-server sysadmin tools help

  • C# in Windows Application
    N Nath

    Hi ALL, retrieving a string from database like this 1. MAKARAMPURAM, MAKARAMPURAM, 2. SALINA PUTTUGA, SALINA PUTTUGA, 3. MAKARAMPURAM, MAKARAMPURAM, 4. MAKARAMPURAM, JANNI PUTTUGA, 5. MAKARAMPURAM, MAKARAMPURAM, 6. KORIKANA PUTTUGA, KORIKANA PUTTUGA, 7. MAKARAMPURAM, MAKARAMPURAM Now i have to display this entire string to label,in the form of 3 or 4 lines is it possible? could anyone help me how to split this string Thanks Nath

    C# csharp database help tutorial 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