So, it is a constant learning process. Never ever give up. No one is born intelligent. I believe, it all depends on how we tune our brain to make it work in the most efficient way. All the very best. Feel free to contact me if you need any help. Good luck with your interviews.
Hi Ravi, In an interview, the interviewer, usually checks your understanding of concepts. So, try and get yourself confident with the concepts. Start with c#, sql server, ado.net, asp.net, wcf and if time permits mvc. Every time you attend an interview, make a note of the questions that you did not answer. Try and get yourself confident with those questions, so that you will be able to answer them, should an interviewer ask these questions in another interview.
I am already learning from the Playlists you mentioned. at the same time I have shared n subscribed your channel right from the beginning of ASP.Net MVC tutorials. Sir you are doing a great favour for us...Thanks..
Sure, will upload soon. 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.
Wow, that was quite difficult. For VS2015 or VS2017 users: to get the exactly same file structure and type of project as in Mr Venkat's tutorial, add project type - ASP.NET Web Application - Empty - check Web Forms and Web API, uncheck MVC
Thank you, sir for providing valuable videos. These help lot to learn. We are very grateful to you. Sir, will you please record a series on Threading in C#? That will be great. Coz it is very important n useful topic. thanks a ton...!
Hello, I tried this example but I have a problem... The first page opens fine and shows WebForm1. When I click WebForm2, WebForm3, or WebForm4 links it says that access is not possible/localhost rejected the connection... Any tip hot to fix this??
I don't get that either. And also in that if block why don't we have to store the url stack in the Session variable like this: Session["URLStack"] = urlStack; Every time we click the back button we read the stack from that Session variable but we never update that, why?
simran kaur Actually it IS a PostBack when the Back-button is pressed. If you view the code he is checking for a NOT isPostBack - > !this.Page.isPostBack
@@archrodney We need to store the Stack object itself in the session state variable, not the condition of the stack object, that is, the number of items present in the stack.
Session["BackButtonClicked"] is being used as a conditional parameter. When we reach page 4 from page 3, page 3 becomes the UrlReferrer. After that when Back button is clicked, we're redirected to page 3 from page 4, so now page 4 becomes the UrlReferrer. At this point, if Back button is clicked we'll be redirected to page 4 again instead of going to page 2. So a SessionState variable is set to check this situation. If the Back button is clicked, it'll be populated with some data. In the Url storing code block the variable is again checked for emptiness (as both Request.UrlReferrer and !this.Page.IsPostBack evaluate to true). Since the variable not being empty, no Url will be stored of UrlReferrer page. At this point the variable is again emptied, as if we want to visit page 4 or any other page and store their url.
Hi Venkat. In the Click method, it is missing a code after the Label message. We have to write Session["BackButtonClicked"] = null; otherwise the condition if(Request.UrlReferrer != null && !this.Page.IsPostBack && Session["BackButtonClicked"] == null) will not be all true when we click again to go to a page.
WebForm2 doesn't works...the link doesn't go to breakpoint again..the browser didn't load anything or go back to that pointer again after pressing f5 u told...please help
I was having trouble running example inside VS2017. The html anchor tags inside Site.Master did not work for jumping to the next page. I ran the first page in VS and noted address (for me it is: localhost:27465/WebForm1.aspx). Then I replaced the anchor tag href: localhost/webformsDemo/WebForm1.aspx with address from previous step: for me it was WebForm1. Hope this helps anyone else using VS2017.
So, it is a constant learning process. Never ever give up. No one is born intelligent. I believe, it all depends on how we tune our brain to make it work in the most efficient way. All the very best. Feel free to contact me if you need any help. Good luck with your interviews.
Hi Ravi, In an interview, the interviewer, usually checks your understanding of concepts. So, try and get yourself confident with the concepts. Start with c#, sql server, ado.net, asp.net, wcf and if time permits mvc. Every time you attend an interview, make a note of the questions that you did not answer. Try and get yourself confident with those questions, so that you will be able to answer them, should an interviewer ask these questions in another interview.
Words from a true champion.. Hats off to you Sir.!!!!
I am already learning from the Playlists you mentioned. at the same time I have shared n subscribed your channel right from the beginning of ASP.Net MVC tutorials.
Sir you are doing a great favour for us...Thanks..
Excellent as usual. Thanks allot for your help to the dev comunity
Sure, will upload soon. 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.
Wow, that was quite difficult.
For VS2015 or VS2017 users: to get the exactly same file structure and type of project as in Mr Venkat's tutorial, add project type
- ASP.NET Web Application
- Empty
- check Web Forms and Web API, uncheck MVC
Hello. I was having the same difficulty here in the VS2019. Now it seems to be working fine. Thank you very much.
Xcellent Video Venkat... Great Job...
great teaching ....thanks you.....
Thank you, sir for providing valuable videos. These help lot to learn. We are very grateful to you.
Sir, will you please record a series on Threading in C#?
That will be great.
Coz it is very important n useful topic.
thanks a ton...!
best one talk about stack
I was just wondering, can you please do a video on Event handlers
sir why we didn't update the Session["URLStack"] to the new stack value after Pop()
Hello,
I tried this example but I have a problem...
The first page opens fine and shows WebForm1.
When I click WebForm2, WebForm3, or WebForm4 links it says that access is not possible/localhost rejected the connection...
Any tip hot to fix this??
thank u so much Sir
Great tutorial as always.
Sir, Will you record a series on System.IO also?
That would be great.
thanks a ton...
sir how much video tutorial are left in this tutorial series
sir if u kindly show us little bit Entity framework and LINQ that would be fine
thnx a lot sir...
sir please explain why we didn't update the Session["URLStack"] to the new stack value after Pop()
why is it not a postback when the url is redirected to webform 3 on clicking back button?
I don't get that either. And also in that if block why don't we have to store the url stack in the Session variable like this: Session["URLStack"] = urlStack;
Every time we click the back button we read the stack from that Session variable but we never update that, why?
simran kaur Actually it IS a PostBack when the Back-button is pressed. If you view the code he is checking for a NOT isPostBack - > !this.Page.isPostBack
@@archrodney I also don't understand how that session is being updated, at which part of the code?
Because it happens in the page load of a new page, not the same page, that is, the page is not posted back to itself.
@@archrodney We need to store the Stack object itself in the session state variable, not the condition of the stack object, that is, the number of items present in the stack.
Hi, Sir at 6:56. I did not understand the logic of setting Session["BackButtonClicked"]=null;. pls help.
Session["BackButtonClicked"] is being used as a conditional parameter. When we reach page 4 from page 3, page 3 becomes the UrlReferrer. After that when Back button is clicked, we're redirected to page 3 from page 4, so now page 4 becomes the UrlReferrer. At this point, if Back button is clicked we'll be redirected to page 4 again instead of going to page 2.
So a SessionState variable is set to check this situation. If the Back button is clicked, it'll be populated with some data. In the Url storing code block the variable is again checked for emptiness (as both Request.UrlReferrer and !this.Page.IsPostBack evaluate to true). Since the variable not being empty, no Url will be stored of UrlReferrer page. At this point the variable is again emptied, as if we want to visit page 4 or any other page and store their url.
Hi Venkat,
I am looking for job can you tell me, How to prepare for Asp.net, C# , Asp.net MVC interview, need your guidance and tips.
Hi Venkat. In the Click method, it is missing a code after the Label message. We have to write Session["BackButtonClicked"] = null; otherwise the condition if(Request.UrlReferrer != null && !this.Page.IsPostBack && Session["BackButtonClicked"] == null) will not be all true when we click again to go to a page.
WebForm2 doesn't works...the link doesn't go to breakpoint again..the browser didn't load anything or go back to that pointer again after pressing f5 u told...please help
How to know if the event is postBack or not?
Thank, Which apps do you use to record your screen?!
I was having trouble running example inside VS2017. The html anchor tags inside Site.Master did not work for jumping to the next page. I ran the first page in VS and noted address (for me it is: localhost:27465/WebForm1.aspx). Then I replaced the anchor tag href: localhost/webformsDemo/WebForm1.aspx with address from previous step: for me it was WebForm1. Hope this helps anyone else using VS2017.
Yes, thank you very much. Even in VS2015 it works like this, otherwise I get 403.14 error.
Same here on VS2019. Thank you very much.
Thanks for your motivation.. :) Is this only way to contact you or you suggest some other options to reach you ?
didn't understand anything