Asp.net wizard control templates Part 40

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 13

  • @qurupatriot
    @qurupatriot 11 ปีที่แล้ว +3

    if someday I will come to India I will find you and deliver thanxxxx of venkat lovers!
    thanx a lot. you are king!

  • @Trzbne
    @Trzbne 6 ปีที่แล้ว +1

    6 years old video, and everything still works as expected! This is Venkat Magic :-)
    Generalized solution for focusing the first Textbox in every Step:
    Wizard1.WizardSteps[Wizard1.ActiveStepIndex].FindControl
    ("tbStep" + (Wizard1.ActiveStepIndex + 1).ToString()).Focus();
    I named the textboxes as... tbStep1, tbStep2 etc.

  • @vaibhavtrikolikar4902
    @vaibhavtrikolikar4902 4 หลายเดือนก่อน

    11 Year Old, Still All Concepts are working as expected.
    Thank You So much sir for your effort's.😀😊

  • @CodingSquid
    @CodingSquid 7 ปีที่แล้ว +1

    Another great lesson. I've been trying to set focus to the wizard finish button since lesson 36. This showed me the way with the wizard control Convert Finish Nav. and the FindControl. Thank you again, and I'm looking forward to the MVC section.

  • @Csharp-video-tutorialsBlogspot
    @Csharp-video-tutorialsBlogspot  11 ปีที่แล้ว

    Thank you very much for taking time to give feedback. In the description of this video, I have included the link for ASP .NET, C#, and SQL Server playlists. All the videos are arranged in logical sequence in these playlists, which could be useful to you. Please share the link with your friends who you think would also benefit from them. If you like these videos, please click on the THUMBS UP button below the video. For email alerts, when new videos are uploaded, you may subscribe to my channel.

  • @shahzaibriaz6552
    @shahzaibriaz6552 6 ปีที่แล้ว

    Awesome Lecture
    I'm very excited to learn more from ( Respected Kudvenkat Sir)

  • @tomdilen7062
    @tomdilen7062 4 ปีที่แล้ว

    thx for all, you're the best

  • @satyavathi8538
    @satyavathi8538 7 ปีที่แล้ว

    Ur great bayya. U hav awesome knowledge

  • @suneetakondragunta2117
    @suneetakondragunta2117 10 ปีที่แล้ว

    Your video are so good and detail. thanks a lot.

  • @mahi2239
    @mahi2239 10 ปีที่แล้ว

    You are Awesome...

  • @InterNeo69
    @InterNeo69 11 ปีที่แล้ว

    Why don't you use Focus() method on found buttons instead of UseSubmitBehavior properties (which convert button to JavaScript object)?

  • @thejasraghavendra
    @thejasraghavendra 9 ปีที่แล้ว

    client click validation is not working for finish prev button......it is not asking any popup just navigating to prev screen...plz help me out

    • @89Ssik
      @89Ssik 8 ปีที่แล้ว

      +thejas raghavendra
      Button btnPreviousFinish = (Button)Wizard1.FindControl("FinishNavigationTemplateContainerID").FindControl("FinishPreviousButton");
      btnPreviousFinish.OnClientClick = "return confirm('Are you sure you want to go back to previous step?')";
      Hope this helps =)