I have an ActiveX control for web created in .net 3.5. When upgrading the framework to 4.0 it stops working. I have tried to create a hello world activeX control with 4.0 and it wouldn't work either. Is it not possible to create ActiveX controls with .net framework 4.0? I have also tried to...
The table is properly indexed, normalized, has few columns and will probably have millions of rows, 99% of which will be inactive.
I'd really prefer not having to create a separate table if possible. Given my scenario, is moving data to a separate table still my only option?
I am creating a table that is going to have a lot of data in the future. If I have a flag column "Archived" in the table to differentiate between active data and archived, would that be enough to prevent any query performance issue or do I need to actually create a separate table and move old...
I have a very simple test page with just one push button on the page. It works fine on Windows 2000 Server but the control isn't viewable when the project is created on a Widows XP Pro machine. Any HTML text I enter directly on the page shows up fine on the page.
Is there anyway to specify the spacing between items in a check box list? I have multiple check box lists on my page and I want all items from all checkboxlists aligned.
I have tried all that and it still doesn't work. It works for all other cookies except this particular one, very strange. I give up and simply create a new cookie called "RememerEmail" and use that value instead. Thank you all for trying to help.
The code works with new cookie members but not with this specific cookie I had named "SaveEmail". The current value of the cookie is 1 and I want to set it to "True". The expiration date of the cookie was set to be 1 year from the date it was created. The test code was the only code on my test...
How do I get the system Date in crystal report formula editor? This is what I want to do:
Formula = DateDiff ("day",{sp_listPaidEventReg.dob} ,System date)
This is what I tried and it still doesn't work :(
HttpCookie cookie = new HttpCookie("SaveEmail");
cookie.Expires = DateTime.Now.AddYears(-1);
Response.Cookies.Add(cookie);
Request.Cookies.Add(cookie);
Request.Cookies["SaveEmail"].Expires = DateTime.Now.AddYears(-1)...
I have a cookie that has been set a value and expiration date to be a year from the date created. I am not able to change or delete the cookie. below is my code:
private void RDCookie()
{
Request.Cookies.Remove("SaveEmail2");
Response.Write(Request.Cookies["SaveEmail2"].Value);
}
The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.