try with lowercase for clientside event, that is onchange.
Regards R.Arockiapathinathan
try with lowercase for clientside event, that is onchange.
Regards R.Arockiapathinathan
I think, lbl_status is server control. So, Try the following way document.getElementById('<%= lbl_status.ClientID.ToString() %>').innerHTML = 'Sending...';
Regards R.Arockiapathinathan
Check, r u updating the data before populating (loading) again?
Regards R.Arockiapathinathan
check this article and try to use that http://www.codeproject.com/system/Task_Manager_Extension.asp[^]
Regards R.Arockiapathinathan
Yah, its right. If this is the case, you have to restructure you projects and create one more project and push the common things into that project and refer that into both projects.
Regards R.Arockiapathinathan
check the following article http://www.codeproject.com/cs/database/DatabaseAcessWithAdoNet1.asp[^]
Regards R.Arockiapathinathan
Try the following way Rightclick the project->add reference->Project->Select the project
Regards R.Arockiapathinathan
try this bool validatedate(string datestr) { try { System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en-US"); DateTime tmpDate= DateTime.ParseExact(date, "dd-MMM-yyyy", culture); return true; } catch(Exception ex) { return false; } }
Regards R.Arockiapathinathan
try like this MyDateColumn >= "01-Apr-2007 12:00:00 AM" AND MyDateColumn <= "01-Apr-2007 11:59:59 PM" Make sure urself - the value i gave in double quotes for just sample. So u have to convert this into date in the SQL
Regards R.Arockiapathinathan
For date sorting, you have to use some different logic, especially date sorting is the best one. But, here you are using just string sorting, so you won't get correct result. So, use date field in the dataview instead of changing into varchar (that is best way), and use format to display the date into the specified format. You can use the DataFormatString property in grid. For example: for bound column, ....asp:BoundColumn DataField="FieldName" DataFormatString="{0:dd MMM yyyy}" .....
I hope, you can get the answer from this.
Regards R.Arockiapathinathan
It means virtual directory not created in IIS web site. First create the virtual directory then try again.
Regards R.Arockiapathinathan
me too interested in this. But the fact is - you have to catch the browser window unload event and you have to call the required methods/procedures to close the session. I think, in default, every new browser window will create new session and simultaneously if you close then automatically the session will expire. But this is not related to the custom authentication like login process. So i am expecting more responses in this topic.
Regards R.Arockiapathinathan
I am using a C# custom dll in my biztalk project, that dll is deployed in Global assembly. This dll reading some value from App.Config file using ConfigurationManager class. But after deploying the dll to Global assembly, how will this assembly get the value from app.config file or anything needs to do to deploy this app.config file into somewhere....?
Regards R.Arockiapathinathan
The same manner you are assigning the value to session object, you can read the value from the session object and you can populate the grid. But in your question you are asking, "I want this button to display the gridview on the other page". What do you mean here?
Regards R.Arockiapathinathan
Fantastic and million thanks to you. It works fine.
Regards R.Arockiapathinathan
I need to find the HTML comment using regular expression. I tried this expression (?:). but this is not suitable to find multiline comment (that is newline). Please help anyone to find this HTML comment using regex. Thanks in Advance.
Regards R.Arockiapathinathan
check this url. http://www.codeproject.com/cs/system/extendservicecontroller.asp i hope it will helpful to you
Regards R.Arockiapathinathan
Use simplest way that is GROUP BY option
Regards R.Arockiapathinathan
I switched off enableviewstate in page level. But still getting viewstate hidden control. And in our website, we are getting error log, it gives the request url, it says ....aspx?__viewstate=/....... We never use postback option in all our pages. So how come this is possible? Is it any hack attack?
Regards R.Arockiapathinathan
Why __VIEWSTATE comes in querystring? Anyone have any idea and please reply as soon as. This is very urgent. Thanks in Advance.
Regards R.Arockiapathinathan