Hi, i propose to move the code that update the Session["Cultura"] to code block of Button_Click and let the InitializeCulture() do it is job by setting the CurrentUICulture.
Regards, Jamil
Hi, i propose to move the code that update the Session["Cultura"] to code block of Button_Click and let the InitializeCulture() do it is job by setting the CurrentUICulture.
Regards, Jamil
Hi, Have you ever tried to refresh the page , sometimes the css + js files are cached, Ctrl + F5 could help i faced this issue when trying to add new css classes to the stylesheet file and fixed it by refreshing the page
Regards, Jamil
Hi, check the following article: How To Send and Receive SMS using GSM Modem[^]
Regards, Jamil
In order to check the css compatibilty you can use the following online validator: http://validator.w3.org/[^]
Regards, Jamil Check my latest article: http://www.codeproject.com/Tips/80141/Authentication-and-Authorization-in-ASP-NET.aspx
Can you specify the exception that you are getting?
Regards, Jamil
Hi, you can set the path of the login page in the web.config: <authentication mode="Forms"> <forms loginUrl="Login.aspx" timeout="600" defaultUrl="Home.aspx"></forms> </authentication>
Regards, Jamil Check my latest article: http://www.codeproject.com/Tips/80141/Authentication-and-Authorization-in-ASP-NET.aspx
Check the following in your code: 1-are you sure you are not saving a new book in the Page_load event of the page? 2-are you sure you are not calling the save method twice? 3-make sure that the procedure is saving one book. if you want you can post your code to fix the issue.
Regards, Jamil Please check my latest article: http://www.codeproject.com/Tips/80141/Authentication-and-Authorization-in-ASP-NET.aspx
you need to create a windows service and deploy it to the server once done you can schedule this windows service to send mails as per your requirments
Regards, Jamil Check my latest article
One of the most useful debugging features of .NET Framework is Trace type (or class in C++). Functionally Trace is very similar to Debug type (and they share most of internal implementation), but unlike its Debug sibling that is supposed to be used only during debugging sessions, Trace functions can be compiled into a program and shipped to customers, so in case your users encounter a problem, they can activate trace by simply editing application configuration file. Trace is easy to use and fully documented in .NET Framework documentation, so I will only briefly go through the basic trace features. Refer to : Writing custom .NET trace listeners[^] http://www.codeguru.com/csharp/.net/net_debugging/tracing/article.php/c5919/NET-Tracing-Tutorial.htm[^]
Regards, Jamil
what is MNC if i may ask?
Regards, Jamil
Hi, did you find any control to show this kind of images? i'm interested to know more
Regards, Jamil
The usage of multiple configuration file makes the application more secure and manageable. In the following tutorial you can learn how to use multiple web.config files in your application.
Regards, Jamil
Hi, The subject of an e-mail is of type string and it is not an html content. i don't think that it is feasable
Regards, Jamil
Hi, you can you use the DataBound event of the grid to set the text of the button, but the best practice is to set the UI culture by overriding the following event in your page:
protected override void InitializeCulture()
{
System.Threading.Thread.CurrentThread.CurrentUICulture = "the culture";
System.Threading.Thread.CurrentThread.CurrentCulture = "the culture";
}
Regards, Jamil
Hi, This is not possible.
Regards, Jamil
Hi, yes you can , by using the full path of the image check this article on how to use the editor: http://www.asp.net/ajax/tutorials/how-do-i-use-the-html-editor-control--cs[^]
Regards, Jamil
maybe you are updating the value using a client side code (javascript).
Regards, Jamil
Hi, The label should be added inside the UpdatePanel in order to be updated.
Regards, Jamil
Hi, Please use the below:
DateTime dt = DateTime.Now;
string strDate = dt.ToString("dd-MMMM-yyyy");
Regards, Jamil
oh i got the reason: It lets you assign a single instance of Epoch to an unlimited number of <INPUT> boxes—all you need to do is add an onFocus() event handler to the box. This saves both memory and reduces your page's load time.
Regards, Jamil