Issue with chaining Required Field and Regular Expression validators for Textbox controls
I’m trying to implement a form validation with ASP.net and I have tried every solution suggested here but the best one was on aspsnippets.com so far.
I’m trying to implement a form validation with ASP.net and I have tried every solution suggested here but the best one was on aspsnippets.com so far.
I have a site that uses the default SqlMembershipProvider and FormsAuthentication. I can use the built-in Login Controls and/or programmatically call all the methods to authenticate a user and get the same result – the user is authenticated and a cookie is created, but the cookie does not appear to be valid since I can’t get into any page that requires authentication.
I’m trying to set up continous deployment for an Azure Web App from Bitbucket. The deployment however fails with the following error:
i am trying to enable roles in asp.net but,i am getting few errors and after trying my best i am not able to get them resolved.
I would like to close the browser window when an ASP.NET operation has succeeded. The code below is triggered by a button that resides in an Ajax UpdatePanel.
I have not used XML for very long and need to extract the useful information from an XML response. If there are 2 tags that are the same but have a different name e.g
What is the difference between “Request” and “Response” terminologies in ASP.net?
I am using ASP.net 3.5.
I have one textbox in that user enter the URL, but if want to check that URL while page rendering then what to do? Here is my code: protected void btnRender_Click(object sender, EventArgs e) { string strResult = string.Empty; WebResponse objResponse; WebRequest objRequest = System.Net.HttpWebRequest.Create(urltxt.Text); objResponse = objRequest.GetResponse(); using (StreamReader sr = new StreamReader(objResponse.GetResponseStream())) { … Read more
The Webforms application I have is very data heavy, it’s mostly ASP controls doing ADO.net operations. I have loading times of anywhere from 5-15 seconds, which is normal, but I’d like to make it more obvious to the user that their request is being processed. What I’d like to do is add a loading image … Read more
How can I use Linq to SQL to retrieve @@DBTS using C#?