Thank you for sharing your knowledge. I love your tutorials.
@ukaszwesoowski218610 жыл бұрын
Thank you very much! Best tutorials. Greetings from Poland.
@somu199823 жыл бұрын
Very thankfull for your Classes.Its helping me a lot in my training
@surendrakommireddy48488 жыл бұрын
vekat ji...very usefull for freshers
@Csharp-video-tutorialsBlogspot8 жыл бұрын
Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful. I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you kzbin.infoplaylists?view=1&sort=dd If you need DVDs or to download all the videos for offline viewing please visit www.pragimtech.com/kudvenkat_dvd.aspx Slides and Text Version of the videos can be found on my blog csharp-video-tutorials.blogspot.com Tips to effectively use my youtube channel. kzbin.info/www/bejne/r2ibYYCtnb5qZtU If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel. kzbin.info If you like these videos, please click on the THUMBS UP button below the video. May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them. Good Luck Venkat
@unlimitedRewind15 жыл бұрын
Best Asp tutorial. Thanks
@krismaly630010 жыл бұрын
Very good explanation on ASP element TEXT BOX I recommend others to watch this video
@mdmosharrafraza426710 ай бұрын
you are so great ( :
@LalamAnudeep911 жыл бұрын
Hi Venkat I have few doubts here..... 1).Whenever we double click the TextBox why we got "TEXT CHANGED" event? Apart from this event there are some more events like PreRender,Load,Init etc... Why we are not getting any one of these? 2).How to remove the data from the text boxes when I refresh the page i.e. When I refresh the page the existing data should vanish? Thanks in advance
@suvarchalananduri891110 жыл бұрын
1. Textbox's click event fires up TextChanged event whereas a button's click event fires up the button_click event. You can get the other events such as Load, PreRender to fireup, when you go to the properties pane and click on that event and write your code in. 2. If you dont want to retain your data for the textbox controls, you can delete the data explicitly, or set the EnableViewState property to false. However, you would not want to do that, because retaining data when you post back is one of the key functionality in ASP.NET.
@kalyanfuturetech77479 жыл бұрын
+anu deep sry for the wrong question here prerender ,load,init are the page controls but testbox is a cached event mean a server control.
@ordinaryman211 жыл бұрын
very good chanel
@muhammadfawad76237 жыл бұрын
Thank you very much sir
@josephoyila691311 жыл бұрын
This is a great training worth donation for, well done, but pls how can l acheaved this task: l want to be able to upload a software to my website for my client to download it on their computer how can l acheaved this , hope u will have time to reply me thanks
@shabbir98011 жыл бұрын
Really Good Tutorials its help me lots to learn new think .. Thank you very much venkat for such a great work . Your represenatation skill is awesome . It will be great for me if you provide tutorials on WPF.
@hazemelamir20837 жыл бұрын
very good tutorial but i want to know how can textchange event to be fired while the text change, i mean with every chr added how can i do that? thanks,
@Fridge_Incubator12 жыл бұрын
thanks sir
@sureshchouhan20096 жыл бұрын
Sir When i am using textMode="Number" and MaxLength="10" that MaxLenth Property Is not Working.......please to help me?
@kmuralikrishna15825 жыл бұрын
how to return like args.Isvalid =true or false for form validation since in textbox_textchanged args is not available
@sumon209912 жыл бұрын
Sir if talk about autocomplate properties
@jadaname621110 жыл бұрын
nice tutorial thanks dear but could you uploads your slides ?
@ramprasadkasoju130210 жыл бұрын
Slides are available at (csharp-video-tutorials.blogspot.in)
@AleMaryPunk9 жыл бұрын
How it is done to clean the textbox? help me
@ervinaguilar8249 жыл бұрын
+Ale Acosta yea.. i want to know too How it is done to clean the textbox? help me
@jecab719 жыл бұрын
+Ale Acosta textbox.text = string.Empty; or texbox.text ="";
@kalyanfuturetech77479 жыл бұрын
+Jelena Vojinovic textbox.text=sting.clear();
@jecab719 жыл бұрын
Did you mean stRing. Clear()? :)
@AleMaryPunk9 жыл бұрын
thanks :)
@aatithyanew53774 жыл бұрын
i need a tutorial where i enter a name in text box and go to next page that is related to name thst i have entered after pressing button with out database
@saimirfan9023 жыл бұрын
Use Session State variable to achieve this functionlaty
@ervinaguilar8249 жыл бұрын
i want to know too How it is done to clean the textbox? help me
@globoxmusic9 жыл бұрын
+Ervin Aguilar after your process (maybe on click button) turn the textbox1.text equal to an empty string ("")
@bread_n_circuses11 жыл бұрын
watching this on fullscreen I thought my capslock key was stuck in haha
@jadaname621110 жыл бұрын
any one can help me in asp.net c# ?
@siddalingeshapatil89738 жыл бұрын
SIr i have host my asp.net web application in IIS and is it accesble for everyone
@darwinumana92367 жыл бұрын
okay. my no entender dis ingles. XD
@sammarabbasshah74297 жыл бұрын
i want to set the value of this text box which have TextMode= Date by executing a query on sql data base how can i do that? So far query runs properly i get the date in the variable but unable to set it to the textbox!