by Melih
25. March 2011 15:50
When you use post method to send data to a page usually you would use
Request.Form("variable")
However if you are using asp.net MasterPage for the form sending page your simple code will not work.
Because in the serverside Control.UniqueID has been created for those items in the form automatically.
Possible way to access these items would be like this
Request.Form("ctl00$content1$variable")
Even this code might not work for all cases.
Now what to do???
Put this code in the page load even...
[More]
by Cadianda Internet Services
5. November 2010 12:21
When removing a domain from helm you might see these error messages in your log file:
2004-07-30 16:35:09 Stats.RemoveStats Unable to initalise Soap Components
2004-07-30 16:35:09 Stats.IStat_Execute Unable to initalise Soap Components
2004-07-30 16:35:09 CStatsInstal.RemoveEx Unable to initalise Soap Components
2004-07-30 16:35:09 CDomain.DeleteDomainEx Unable to initalise Soap Components
[More]
by Cadianda Internet Services
21. October 2010 18:30
.CA Domain Names are reserved for Canadian Organizations and Individuals. CIRA’s Canadian Presence Requirements categorize Registrants by a legal type according to which Registrants are deemed eligible to register a .CA Domain Name.The legal type categories are as follows:
Canadian citizen
Permanent resident of Canada
Legal representative of a Canadian citizen or permanent resident
Corporation (Canada or Canadian province or territory)
Trust established in Canada
Partnership regist...
[More]
by Cadianda Internet Services
21. October 2010 18:29
Your .CA Domain Name is the best way to classify yourself or your organization as Canadian to users everywhere. With only 1.5 Million .CA Domain Names registered so far, you can easily get yourself a short generic Domain Name.
Register your .CA domain today!
by Cadianda Internet Services
21. October 2010 18:27
.CA is the ccTLD for Canada. It is a regional domain for companies, organizations, and individuals based in or having a target audience based in the region of Canada.
Register your .CA domain today!
by Cadianda Internet Services
27. September 2010 14:46
This is one of those error messages can cause hair loss...
It happens when you try to install or uninstall a windows sercice. If you are developing a windows service you will defenitely meet this error message.
If you check this on MSDN the solution will suggest you to reboot your system. Fortunately I came across this solution better than rebooting your machine. All you need to do is to close services.msc if it is open. Then everything is back to normal...
Hope this trick will save you ...
[More]
by Cadianda Internet Services
14. August 2010 11:04
Exporting or importing data with XML can be difficult when there is an error. If you tried to spot a specific record or try to get top n records from an XML file here is the code you need.
[More]
by Cadianda Internet Services
5. August 2010 08:51
In SQL Server 2005 we could use "BACKUP LOG WITH TRUNCATE_ONLY" however TRUNCATE_ONLY is no longer supported in SQL 2008. You do not have to worry if your databese in simple recovery mode because SQL Server 2008 takes care of truncating the logs for you. If your database is in bulk-logged or full recovery model then schedule transaction log backup on regular interval and you will need to use "dbcc shrinkfile (DBName_Log,10)" to shrink the actual file size.
[More]
by Cadianda Internet Services
3. February 2010 11:23
If you do not want to strugle with cursors to delete duplicate records I have a simple solution for you. For this you must have a primary key or a unique key that has auto increment.
[More]
by Cadianda Internet Services
3. January 2010 11:20
The SWF files play correctly, but the FLV video does not stream, when Flash Player movie files(SWF) that stream external FLV files (Flash videos) are placed on a Microsoft Windows 2003 server. These files would work correctly if tested on other operating systems.Solution is simple:
On the Windows 2003 server, open the Internet Information Services Manager.
Expand the Local Computer Server.
Right-click the local computer server and select Properties.
Select the MIME Types tab.
Click N...
[More]