﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>InstantASP Community Forums / General Discussion / General Chit-Chat </title><generator>InstantForum.NET v4.1.4</generator><description>InstantASP Community Forums</description><link>http://community.instantasp.co.uk/</link><webMaster>sales@instantasp.co.uk</webMaster><lastBuildDate>Wed, 08 Oct 2008 07:57:55 GMT</lastBuildDate><ttl>20</ttl><item><title>RecipManager Forum</title><link>http://community.instantasp.co.uk/Topic13391-23-1.aspx</link><description>We havent had much time to put into the forum but once we do the upgrade to 4.1.4 we will be changing things but its a start i guess.&lt;/P&gt;&lt;P&gt;&lt;a target="_blank" href="http://forum.recipmanager.com/"&gt;http://forum.recipmanager.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ken</description><pubDate>Sat, 29 Sep 2007 16:45:29 GMT</pubDate><dc:creator>RM003</dc:creator></item><item><title>I need to create a web form</title><link>http://community.instantasp.co.uk/Topic13321-23-1.aspx</link><description>I need to create a web form for my site, but I do not know php. Can you please recommend me a php script or some free form builder?:)</description><pubDate>Tue, 18 Sep 2007 09:12:47 GMT</pubDate><dc:creator>grana</dc:creator></item><item><title>Example of Image Upload</title><link>http://community.instantasp.co.uk/Topic13352-23-1.aspx</link><description>Here we are uploading images in File System and storing path in the database.&lt;BR&gt; &lt;BR&gt;&lt;a target="_blank" href="http://www.hanusoftware.com/"&gt;http://www.hanusoftware.com&lt;/A&gt;&lt;P&gt;Code (ImageUpload.aspx.cs) :-&lt;BR&gt;private void Button1_Click(object sender, System.EventArgs e)&lt;BR&gt;  {&lt;BR&gt; // Here I am uploading images in Images folder of C drive.&lt;BR&gt;int intResult=0;&lt;BR&gt;string strPath = @"c:\Images\"+Path.GetFileName(File1.PostedFile.FileName);&lt;BR&gt;SqlConnection con = new SqlConnection("server=.;uid=sa;database=pubs;pwd=");&lt;BR&gt;SqlCommand com = new SqlCommand("Insert into Category(name,imagepath) values(@name,@imagepath)",con);&lt;BR&gt;   com.Parameters.Add("@name",TextBox1.Text);&lt;BR&gt;   com.Parameters.Add("@imagepath",strPath);&lt;BR&gt;   con.Open();&lt;BR&gt;   intResult =  Convert.ToInt32(com.ExecuteNonQuery());&lt;BR&gt;   if(intResult != 0)&lt;BR&gt;   {&lt;BR&gt;    File1.PostedFile.SaveAs(strPath);&lt;BR&gt;    Response.Write("Record Inserted.");&lt;BR&gt;   }&lt;BR&gt;  }&lt;/P&gt;&lt;P&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.hanusoftware.com/"&gt;Software Development Company&lt;/A&gt;</description><pubDate>Thu, 20 Sep 2007 03:46:26 GMT</pubDate><dc:creator>hanusoftware</dc:creator></item><item><title>InstantForum at londonbikers.com</title><link>http://community.instantasp.co.uk/Topic13196-23-1.aspx</link><description>I've just launched a new version of our site which uses version 4.1.4 of InstantForum. I've had to modify the source a fair bit to get it to behave how I like, and still have changes to make, but you can see it at:&lt;br&gt;&lt;br&gt;[url=http://londonbikers.com/forums/]http://londonbikers.com/forums/[/url]&lt;br&gt;&lt;br&gt;I've moved the file attachments from the DB to the file-system to stop my database getting out of control, and have modified the thread pages so they render attachment images inline with the post, and if they're bigger than a set size, dynamically resizes them down to an acceptable size.&lt;br&gt;&lt;br&gt;I also had to integrate it with my own UMS which was more difficult than with prior versions, so I'm still looking for some answers on things, but there doesn't seem to be much support available on these forums.&lt;br&gt;&lt;br&gt;I created a new skin as well :)</description><pubDate>Sun, 26 Aug 2007 16:40:04 GMT</pubDate><dc:creator>Jay Adair</dc:creator></item><item><title>TO SEND Text message or URL through Clickatell</title><link>http://community.instantasp.co.uk/Topic13042-23-1.aspx</link><description>WebClient wbcRingtone = new WebClient();&lt;br&gt;&lt;br&gt;// Add a user agent header in case the requested URI contains a query.&lt;br&gt;&lt;br&gt;// http://www.hanusoftware.com&lt;br&gt;&lt;br&gt;wbcRingtone.Headers.Add("user-agent","Mozilla/4.0(compatible;MSIE 6.0;Windows NT 5.2; .NET CLR 1.0.3705;)");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("user","xxxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("password","xxxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("api_id", "xxxxxxxxxx");&lt;br&gt;&lt;br&gt;//wbcRingtone.QueryString.Add("msg_type", "SMS_NOKIA_RTTL");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("to", cellNo);&lt;br&gt;&lt;br&gt;////wbcRingtone.QueryString.Add("text", "Flintstone:d=4,o=5,b=200:g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2f,2p,g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2c#");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("from", "xxxxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("mms_subject", "xxxxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("mms_class", "xxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("mms_expire", "xxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("mms_from", "xxxxxxxxx");&lt;br&gt;&lt;br&gt;wbcRingtone.QueryString.Add("mms_url", "http://www.some.com/folder/mms.mms");&lt;br&gt;&lt;br&gt;//string baseURL = "http://api.clickatell.com/http/sendmsg";&lt;br&gt;&lt;br&gt;string baseURL = "http://api.clickatell.com/mms/ind_push.php";&lt;br&gt;&lt;br&gt;Stream data = wbcRingtone.OpenRead(baseURL);&lt;br&gt;&lt;br&gt;StreamReader reader = new StreamReader(data);&lt;br&gt;&lt;br&gt;string s = reader.ReadToEnd();&lt;br&gt;&lt;br&gt;data.Close();&lt;br&gt;&lt;br&gt;reader.Close();&lt;br&gt;&lt;br&gt;string queryURL = GetQueryForMMS(s);&lt;br&gt;&lt;br&gt;return queryURL;&lt;br&gt;&lt;br&gt;[url=http://www.hanusoftware.com]Software Development India[/url]</description><pubDate>Mon, 16 Jul 2007 03:03:55 GMT</pubDate><dc:creator>hanusoftware</dc:creator></item><item><title>Code to encrypt the Password or any string</title><link>http://community.instantasp.co.uk/Topic13033-23-1.aspx</link><description>/// &lt;summary&gt;&lt;br&gt;&lt;br&gt;/// Thsi method retrieve the string to encrypt from the Presentation Layer&lt;br&gt;&lt;br&gt;/// And return the Encrypted String&lt;br&gt;&lt;br&gt;/// &lt;/summary&gt;&lt;br&gt;&lt;br&gt;/// &lt;param name="str"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// &lt;returns&gt;&lt;/returns&gt;&lt;br&gt;&lt;br&gt;public string encryptPassword(string strText)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;return Encrypt(strText, "&amp;%#@?,:*");&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;/// &lt;summary&gt;&lt;br&gt;&lt;br&gt;/// This method retrieve the encrypted string to decrypt from the Presentation Layer&lt;br&gt;&lt;br&gt;/// And return the decrypted string&lt;br&gt;&lt;br&gt;/// &lt;/summary&gt;&lt;br&gt;&lt;br&gt;/// &lt;param name="str"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// &lt;returns&gt;&lt;/returns&gt;&lt;br&gt;&lt;br&gt;public string decryptPassword(string str)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;return Decrypt(str, "&amp;%#@?,:*");&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;/// &lt;summary&gt;&lt;br&gt;&lt;br&gt;/// This method has been used to get the Encrypetd string for the&lt;br&gt;&lt;br&gt;/// passed string&lt;br&gt;&lt;br&gt;/// &lt;/summary&gt;&lt;br&gt;&lt;br&gt;/// &lt;param name="strText"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// &lt;param name="strEncrypt"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// &lt;returns&gt;&lt;/returns&gt;&lt;br&gt;&lt;br&gt;private string Encrypt(string strText, string strEncrypt)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;byte[] byKey = new byte[20];&lt;br&gt;&lt;br&gt;byte[] dv ={ 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };&lt;br&gt;&lt;br&gt;try&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;byKey = System.Text.Encoding.UTF8.GetBytes(strEncrypt.Substring(0, 8));&lt;br&gt;&lt;br&gt;DESCryptoServiceProvider des = new DESCryptoServiceProvider();&lt;br&gt;&lt;br&gt;byte[] inputArray = System.Text.Encoding.UTF8.GetBytes(strText);&lt;br&gt;&lt;br&gt;MemoryStream ms = new MemoryStream();&lt;br&gt;&lt;br&gt;CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(byKey, dv), CryptoStreamMode.Write);&lt;br&gt;&lt;br&gt;cs.Write(inputArray, 0, inputArray.Length);&lt;br&gt;&lt;br&gt;cs.FlushFinalBlock();&lt;br&gt;&lt;br&gt;return Convert.ToBase64String(ms.ToArray());&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;catch (Exception ex)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;throw ex;&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;/// &lt;summary&gt;&lt;br&gt;&lt;br&gt;/// This method has been used to Decrypt the Encrypted String&lt;br&gt;&lt;br&gt;/// &lt;/summary&gt;&lt;br&gt;&lt;br&gt;/// &lt;param name="strText"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// http://www.hanusoftware.com&lt;br&gt;&lt;br&gt;/// &lt;param name="strEncrypt"&gt;&lt;/param&gt;&lt;br&gt;&lt;br&gt;/// &lt;returns&gt;&lt;/returns&gt;&lt;br&gt;&lt;br&gt;private string Decrypt(string strText, string strEncrypt)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;byte[] bKey = new byte[20];&lt;br&gt;&lt;br&gt;byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };&lt;br&gt;&lt;br&gt;try&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;bKey = System.Text.Encoding.UTF8.GetBytes(strEncrypt.Substring(0, 8));&lt;br&gt;&lt;br&gt;DESCryptoServiceProvider des = new DESCryptoServiceProvider();&lt;br&gt;&lt;br&gt;Byte[] inputByteArray = inputByteArray = Convert.FromBase64String(strText);&lt;br&gt;&lt;br&gt;MemoryStream ms = new MemoryStream();&lt;br&gt;&lt;br&gt;CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(bKey, IV), CryptoStreamMode.Write);&lt;br&gt;&lt;br&gt;cs.Write(inputByteArray, 0, inputByteArray.Length);&lt;br&gt;&lt;br&gt;cs.FlushFinalBlock();&lt;br&gt;&lt;br&gt;System.Text.Encoding encoding = System.Text.Encoding.UTF8;&lt;br&gt;&lt;br&gt;return encoding.GetString(ms.ToArray());&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;catch (Exception ex)&lt;br&gt;&lt;br&gt;{&lt;br&gt;&lt;br&gt;throw ex;&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;}&lt;br&gt;[url=http://www.hanusoftware.com]Software Development India[/url]&lt;br&gt;</description><pubDate>Tue, 10 Jul 2007 05:17:19 GMT</pubDate><dc:creator>hanusoftware</dc:creator></item><item><title>encrypt and decrypt query string</title><link>http://community.instantasp.co.uk/Topic12994-23-1.aspx</link><description>This code has been used to encrypt and decrypt query string .No matter what the lenght of the url is ,this code will encrypt the key and the value the query string into 25 digit&lt;/P&gt;&lt;P&gt;&lt;BR&gt;using System;&lt;BR&gt;using System.Collections.Generic;&lt;BR&gt;using System.Text;&lt;BR&gt;using System.Collections.Specialized;&lt;BR&gt;using System.Collections;&lt;BR&gt;using System.Web;&lt;/P&gt;&lt;P&gt;namespace BusinessLayer&lt;BR&gt;{&lt;BR&gt;public class QueryString : NameValueCollection&lt;BR&gt;{&lt;BR&gt;private string document;&lt;BR&gt;public string Document&lt;BR&gt;{&lt;BR&gt;get&lt;BR&gt;{&lt;BR&gt;return document;&lt;BR&gt;}&lt;BR&gt;}&lt;BR&gt;public QueryString()&lt;BR&gt;{&lt;BR&gt;}&lt;BR&gt;public QueryString(NameValueCollection clone): base(clone)&lt;BR&gt;{&lt;BR&gt;}&lt;BR&gt;//################################################## ###############################################&lt;BR&gt;//This Class Has been used to get the URl from the address browser of the page&lt;BR&gt;// &lt;a target="_blank" href="http://www.hanusoftware.com"&gt;http://www.hanusoftware.com&lt;/A&gt;&lt;BR&gt;//################################################## ###############################################&lt;BR&gt;//this method has been used to get the current URL of the page &lt;BR&gt;public static QueryString FromCurrent()&lt;BR&gt;{&lt;/P&gt;&lt;P&gt;//returns the current url from the address bar&lt;BR&gt;return FromUrl(HttpContext.Current.Request.Url.AbsoluteUr i);&lt;/P&gt;&lt;P&gt;}&lt;BR&gt;/// &amp;lt;summary&amp;gt;&lt;BR&gt;/// This method has been used to divide the Address URl into characters chunks &lt;BR&gt;/// &amp;lt;/summary&amp;gt;&lt;BR&gt;/// &amp;lt;param name="url"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;/// &amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;&lt;BR&gt;public static QueryString FromUrl(string url)&lt;BR&gt;{&lt;BR&gt;//it breaks the address URL in array with separator of ? mark&lt;BR&gt;//this line breaks the Querystring and page &lt;BR&gt;string[] parts = url.Split("?".ToCharArray());&lt;BR&gt;//instantiate the class object&lt;BR&gt;QueryString qs = new QueryString();&lt;BR&gt;//assign the page address to the variable&lt;BR&gt;qs.document = parts[0]; &lt;BR&gt;//if there is any data in array&lt;BR&gt;if (parts.Length == 1)&lt;BR&gt;return qs;&lt;BR&gt;//breaks the QueryString into characters chunks with separator mark &amp;amp;&lt;BR&gt;string[] keys = parts[1].Split("&amp;amp;".ToCharArray());&lt;BR&gt;foreach (string key in keys)&lt;BR&gt;{&lt;BR&gt;//again breaks into chunks by + mark&lt;BR&gt;string[] part = key.Split("=".ToCharArray());&lt;BR&gt;if (part.Length == 1)&lt;BR&gt;qs.Add(part[0], "");&lt;BR&gt;//adds the QueryString key and value pair to the assigned variable&lt;BR&gt;qs.Add(part[0], part[1]);&lt;BR&gt;}&lt;BR&gt;return qs;&lt;/P&gt;&lt;P&gt;&lt;BR&gt;}&lt;BR&gt;/// &amp;lt;summary&amp;gt;&lt;BR&gt;/// This method clear all exceptions in the passed string&lt;BR&gt;/// &amp;lt;/summary&amp;gt;&lt;BR&gt;/// &amp;lt;param name="except"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;public void ClearAllExcept(string except)&lt;BR&gt;{&lt;BR&gt;//calls the method to clear except &lt;BR&gt;ClearAllExcept(new string[] { except });&lt;/P&gt;&lt;P&gt;}&lt;BR&gt;/// &amp;lt;summary&amp;gt;&lt;BR&gt;/// this is the usual method which has to call clear all exceptions&lt;BR&gt;/// &amp;lt;/summary&amp;gt;&lt;BR&gt;/// &amp;lt;param name="except"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;public void ClearAllExcept(string[] except)&lt;BR&gt;{&lt;BR&gt;//take an arrayList &lt;BR&gt;ArrayList toRemove = new ArrayList();&lt;BR&gt;foreach (string s in this.AllKeys)&lt;BR&gt;{&lt;BR&gt;foreach (string e in except)&lt;BR&gt;{&lt;BR&gt;if (s.ToLower() == e.ToLower())&lt;BR&gt;if(!toRemove.Contains(s))&lt;BR&gt;toRemove.Add(s);&lt;/P&gt;&lt;P&gt;}&lt;BR&gt;}&lt;BR&gt;foreach (string s in toRemove)&lt;BR&gt;this.Remove(s);&lt;BR&gt;}&lt;BR&gt;/// &amp;lt;summary&amp;gt;&lt;BR&gt;/// this method adds the key value pairs in QueryString of the URL&lt;BR&gt;/// &amp;lt;/summary&amp;gt;&lt;BR&gt;/// &amp;lt;param name="name"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;/// &amp;lt;param name="value"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;public override void Add(string name, string value)&lt;BR&gt;{&lt;BR&gt;//checks nullability of the name &lt;BR&gt;if (this[name] != null)&lt;BR&gt;//if not null then assign value to it&lt;BR&gt;this[name] = value;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;base.Add(name, value);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;public override string ToString()&lt;BR&gt;{&lt;/P&gt;&lt;P&gt;return ToString(false);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR&gt;/// &amp;lt;summary&amp;gt;&lt;BR&gt;/// this ethod has been used to join all the characters array to the URL &lt;BR&gt;/// &amp;lt;/summary&amp;gt;&lt;BR&gt;/// &amp;lt;param name="includeUrl"&amp;gt;&amp;lt;/param&amp;gt;&lt;BR&gt;/// &amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;&lt;BR&gt;public string ToString(bool includeUrl)&lt;BR&gt;{&lt;/P&gt;&lt;P&gt;string[] parts = new string[this.Count];&lt;/P&gt;&lt;P&gt;string[] keys = this.AllKeys;&lt;BR&gt;//for each keys breaks the URL into chunks&lt;BR&gt;for (int i = 0; i &amp;lt; keys.Length; i++)&lt;/P&gt;&lt;P&gt;parts[i] = keys[i] + "=" + HttpContext.Current.Server.UrlEncode(this[keys[i]]);&lt;/P&gt;&lt;P&gt;string url = String.Join("&amp;amp;", parts);&lt;/P&gt;&lt;P&gt;if ((url != null || url != String.Empty) &amp;amp;&amp;amp; !url.StartsWith("?"))&lt;/P&gt;&lt;P&gt;url = "?" + url;&lt;/P&gt;&lt;P&gt;if (includeUrl)&lt;/P&gt;&lt;P&gt;url = this.document + url;&lt;/P&gt;&lt;P&gt;return url;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;a target="_blank" href="http://www.hanusoftware.com"&gt;Software Development India&lt;/A&gt;&lt;BR&gt;</description><pubDate>Fri, 29 Jun 2007 23:58:55 GMT</pubDate><dc:creator>hanusoftware</dc:creator></item><item><title>Nested forum using IF.NET v4.1.4</title><link>http://community.instantasp.co.uk/Topic12969-23-1.aspx</link><description>&lt;a target="_blank" href="http://forums.soglos.com/"&gt;Gloucestershire forums&lt;/A&gt;&lt;P&gt;Framed by an exisitng template to ensure continuity throughout the website.&lt;/P&gt;&lt;P&gt;Keep up the good work! :)</description><pubDate>Sun, 24 Jun 2007 12:41:30 GMT</pubDate><dc:creator>James F</dc:creator></item><item><title>.NET photo gallery component</title><link>http://community.instantasp.co.uk/Topic6559-23-1.aspx</link><description>Hi all,&lt;/P&gt;&lt;P&gt;I'm looking for a good .NET photo gallery component, that I can use on several band related websites.  I would like to be able to upload the pics thru some sort of control panel &amp;amp; have the thumbnails automatically generated.  Hopefully the image categories could also be generated through an online control panel.  I would also like this component to be skinnable, so I can get the right look, from it.&lt;/P&gt;&lt;P&gt;Any ideas or suggestions would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks</description><pubDate>Wed, 11 May 2005 09:44:53 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>PayPal.com Purchases</title><link>http://community.instantasp.co.uk/Topic154-23-1.aspx</link><description>Your products are appealing but your purchase method is a bother. I do not really want to be anybody's paypal. It is so easy to transparently do online credit card transactions why would you take a processor as a business partner?</description><pubDate>Sun, 20 Oct 2002 15:24:00 GMT</pubDate><dc:creator>Kevin Petersen</dc:creator></item><item><title>InstantKB.NET at Parcom.net</title><link>http://community.instantasp.co.uk/Topic12084-23-1.aspx</link><description>We are proud to use InstantKB.NET after years of using a competitor product.   &lt;/P&gt;&lt;P&gt;Thank you for a fantastic product!   I wish to thank Ryan and Carlos for providing our company with excellent support for our custom implementation which included a dedicated SQL 2005 Enterprise server and a dedicated KB server.       &lt;/P&gt;&lt;P&gt;&lt;a target="_blank" href="http://kb.parcom.net/" target=_blank&gt;http://kb.parcom.net&lt;/A&gt;&lt;P&gt;Regards,&lt;BR&gt;"Crazy Dave" of Parcom.net&lt;BR&gt;&lt;a target="_blank" href="http://www.parcom.net/" target=_blank&gt;http://www.parcom.net&lt;/A&gt;</description><pubDate>Wed, 29 Nov 2006 13:06:25 GMT</pubDate><dc:creator>Parcom.net</dc:creator></item><item><title>Faroese forum.fo</title><link>http://community.instantasp.co.uk/Topic12061-23-1.aspx</link><description>My &lt;a target="_blank" href="http://www.forum.fo/" target=_blank&gt;www.forum.fo&lt;/A&gt; is pretty straight standart 4.1.4 InstantForum.net.&lt;/P&gt;&lt;P&gt;The whole thing was translated by my helpfull wife. It toke her 45 hours to translate the 3.000 lines, good job!&lt;/P&gt;&lt;P&gt;I'v thing that we will launch a new design when we have 1.000 users.&lt;/P&gt;&lt;P&gt;&lt;a target="_blank" href="http://www.forum.fo/"&gt;&lt;IMG src="http://support.instantasp.co.uk/Uploads/Images/4b5ee1e3-2cd9-4baa-be84-e049.jpg" border=0&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a target="_blank" href="http://www.forum.fo/" target=_blank&gt;http://www.forum.fo/&lt;/A&gt;</description><pubDate>Thu, 23 Nov 2006 16:25:40 GMT</pubDate><dc:creator>christiand</dc:creator></item><item><title>SSL question</title><link>http://community.instantasp.co.uk/Topic7520-23-1.aspx</link><description>Hi everyone,&lt;br&gt;&lt;br&gt;I have a vb.net web appliation that has a few pages that need to be viewed via SSL (to protect the users data).&lt;br&gt;&lt;br&gt;I've never had to do this before, so I'm hoping some of you have?  Here are a few questions:&lt;br&gt;&lt;br&gt;1. Does the SSL certificate protect the whole site, if the pages are called via 'https'?&lt;br&gt;&lt;br&gt;2. Can you protect just one directory within your application &amp; then call those pages via 'https'?&lt;br&gt;&lt;br&gt;3. By calling pages via 'https, is this how the SSL layer takes over (obviously after it is installed correctly on the web server and application)...&lt;br&gt;&lt;br&gt;I guess just a nice quick summary of how this works will get me a long way...  As stated, I only have a handful of pages that will need to be incrypted.&lt;br&gt;&lt;br&gt;Any help would be greatly appreciated.&lt;br&gt;&lt;br&gt;P.S. Has anyone used the 'Go Daddy' SSL certificates?&lt;br&gt;&lt;br&gt;Thanks</description><pubDate>Fri, 01 Jul 2005 14:46:19 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Show Me Your Forums</title><link>http://community.instantasp.co.uk/Topic6358-23-1.aspx</link><description>Do you have a cool skin or color scheme that you have applied to InstantForums? I'd like to see your work! Please post a link to your forums!</description><pubDate>Wed, 04 May 2005 11:53:35 GMT</pubDate><dc:creator>ChuckC</dc:creator></item><item><title>Upload file with Safari Browser</title><link>http://community.instantasp.co.uk/Topic10497-23-1.aspx</link><description>Hi All,&lt;/P&gt;&lt;P&gt;I am a facing problem with safari browser.&lt;/P&gt;&lt;P&gt;I am uploading image using HtmlInputFile control. Now this works fine with all other browsers but as soon as i try to upload it with safari on 'mac' it shows me one button 'choose file' instead of 'browser button and one textbox'.&lt;/P&gt;&lt;P&gt;Now the problem starts... becoz i have used postedfile property of this control. n as therz no textbox in safari, it gives me error and it stops working&lt;/P&gt;&lt;P&gt;Is there any other way to code it so that it works fine with all browsers including 'safari'&lt;/P&gt;&lt;P&gt;If u hv n e idea then pls help me ASAP&lt;/P&gt;&lt;P&gt;Thanx...</description><pubDate>Mon, 27 Mar 2006 06:28:32 GMT</pubDate><dc:creator>techieman</dc:creator></item><item><title>InstantForum.NET v4.x Installations</title><link>http://community.instantasp.co.uk/Topic8120-23-1.aspx</link><description>Just to get the ball rolling we've provided some examples below... &lt;P&gt;InstantForum.NET v4.x&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;FONT color=#800080&gt;&lt;a target="_blank" href="http://forum.tweakxp.com/forum/" target=_blank&gt;http://forum.tweakxp.com/forum/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.paratrooper.net/commo/" target=_blank&gt;http://www.paratrooper.net/commo/&lt;/A&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.livingformetal.com/forum/" target=_blank&gt;http://www.livingformetal.com/forum/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.roxah.com/" target=_blank&gt;http://www.roxah.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.amateur-hour.com/main.aspx" target=_blank&gt;http://www.amateur-hour.com/main.aspx&lt;/A&gt;&lt;a target="_blank" href="http://www.amateur-hour.com/" target=_blank&gt;&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.venaedivinitus.com/" target=_blank&gt;http://www.venaedivinitus.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.gameshadow.com/forums/" target=_blank&gt;http://www.gameshadow.com/forums/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.82ndassociation.org/forum" target=_blank&gt;http://www.82ndAssociation.org/forum&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://forum.pokerfever.com/" target=_blank&gt;http://forum.pokerfever.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.lancersreactor.com/forum/" target=_blank&gt;http://www.lancersreactor.com/forum/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.mtecinc.com/forums/" target=_blank&gt;http://www.mtecinc.com/forums/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.xamlon.com/forums/" target=_blank&gt;http://www.xamlon.com/forums/&lt;/A&gt; &lt;BR&gt;&lt;a target="_blank" href="http://www.aurigma.com/Forums/" target=_blank&gt;http://www.aurigma.com/Forums/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.war-storm.com/" target=_blank&gt;http://www.war-storm.com/&lt;/A&gt; &lt;BR&gt;&lt;a target="_blank" href="http://www.angelpaths.com/instantforum30/" target=_blank&gt;http://www.angelpaths.com/instantforum30/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.england-afc.co.uk/Scoreboardv2.0/" target=_blank&gt;http://www.england-afc.co.uk/Scoreboardv2.0/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There are a few more on our product page at &lt;a target="_blank" href="http://www.instantasp.co.uk/Products/InstantForum/Default.aspx"&gt;http://www.instantasp.co.uk/Products/InstantForum/Default.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you have a link you would like to add please don't hesitate to post a new topic with your link.</description><pubDate>Tue, 16 Aug 2005 10:35:12 GMT</pubDate><dc:creator>Ryan Healey</dc:creator></item><item><title>How can i see the customer only forums?</title><link>http://community.instantasp.co.uk/Topic10157-23-1.aspx</link><description>Hi there,&lt;br&gt;&lt;br&gt;I keep seeing references to a "Customer Forum", for example certain PSD files are in the customer forums.&lt;br&gt;Where is this forum? I don't see any reference to a Customer Forum here under support.instantasp.co.uk or at http://www.instantasp.co.uk/Support/Default.aspx&lt;br&gt;&lt;br&gt;Thanks</description><pubDate>Thu, 23 Feb 2006 16:50:02 GMT</pubDate><dc:creator>clievers</dc:creator></item><item><title>Please move me to the customer group :)</title><link>http://community.instantasp.co.uk/Topic10030-23-1.aspx</link><description>Hi there,&lt;br&gt;&lt;br&gt;I have just noticed that there is a group called "Customers" .... what is its meaning? And, if it contains all the people who bought InstantForum, whom do you have to ask to get access?&lt;br&gt;&lt;br&gt;Thanks in advance,&lt;br&gt;&lt;br&gt;&lt;br&gt;Golo</description><pubDate>Fri, 10 Feb 2006 14:34:17 GMT</pubDate><dc:creator>Der Eisbär</dc:creator></item><item><title>Cannot open .ASCX Files in VS2003</title><link>http://community.instantasp.co.uk/Topic9809-23-1.aspx</link><description>Any ideas on how to fix this so I can get a designer (and intellisense) for the ASCX controls?&lt;br&gt;&lt;br&gt;Much appreciated.</description><pubDate>Wed, 25 Jan 2006 00:07:24 GMT</pubDate><dc:creator>datajive</dc:creator></item><item><title>Smoking is dangerous to your health?</title><link>http://community.instantasp.co.uk/Topic9133-23-1.aspx</link><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;I style="mso-bidi-font-style: normal"&gt;&lt;SPAN style="FONT-SIZE: 14pt; FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000&gt;"CIGARETTE SMOKING IS DANGEROUS TO YOUR HEALTH”&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;I style="mso-bidi-font-style: normal"&gt;&lt;SPAN style="FONT-SIZE: 14pt; FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt; &lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000&gt;&lt;FONT size=3&gt;We know already that smoking habit is bad to our health right? So why we continue doing that habit in spite we know the bad effect if you continue doing that? If you feel hard to quit so here’s I could offer to you &lt;I style="mso-bidi-font-style: normal"&gt;“NOSMOQ” &lt;/I&gt;product. If you really try our product you could quit within one week only for more information to our product just simply click this link:&lt;SPAN style="mso-spacerun: yes"&gt;  [LINK REMOVED DO NOT SPAM OUR FORUMS WITH THIS]&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000&gt;&lt;FONT size=3&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000&gt;&lt;FONT size=3&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;FONT color=#000000 size=3&gt;Or if you have more questions regarding our product just mail me at [LINK REMOVED]&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;o:p&gt;&lt;FONT color=#000000 size=3&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-style: italic; mso-bidi-font-family: Arial"&gt;&lt;FONT color=#000000&gt;Call Tel. #: [AGAIN REMOVED]&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;</description><pubDate>Tue, 22 Nov 2005 02:18:30 GMT</pubDate><dc:creator>chary</dc:creator></item><item><title>flash object in visual C#</title><link>http://community.instantasp.co.uk/Topic8893-23-1.aspx</link><description>hi, i am building a website using microsoft visual asp.net in C#. I have a flash pic that i can open using shockwave player. If i want to include it into the asp.net how do i put it in? It doesnt show cos i drag a box for image and it isnt an image..&lt;/P&gt;&lt;P&gt;thanx!!</description><pubDate>Sat, 22 Oct 2005 21:09:33 GMT</pubDate><dc:creator>zeiffelz</dc:creator></item><item><title>Impressed</title><link>http://community.instantasp.co.uk/Topic8969-23-1.aspx</link><description>I'm very impressed with this software, I haven't purchased but you bet I'm planning on it ;) &lt;/P&gt;&lt;P&gt;I'm planning on startin a gaming network and this software is my first choice for the forum since it's upto par with the paid competition, and cheaper I believe. Sorry if this is the wrong area, But I just had to show the up most respect and love for this as of yet, un recognized software... I'm suprised it's not the most popular out there :D &lt;BR&gt;&lt;BR&gt;Compliments,&lt;BR&gt;-K.</description><pubDate>Thu, 03 Nov 2005 16:55:44 GMT</pubDate><dc:creator>Kristophe</dc:creator></item><item><title>Paging</title><link>http://community.instantasp.co.uk/Topic7086-23-1.aspx</link><description>Hello all,&lt;br&gt;&lt;br&gt;I've been doing some research in paging a datalist / datagrid.  Anyone have any tips or methods that you've determined to work the best?</description><pubDate>Sat, 04 Jun 2005 09:42:01 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Use of HTML controle in Data Grid</title><link>http://community.instantasp.co.uk/Topic8687-23-1.aspx</link><description>I want to use HTML checkbox Controle in a datagrid but i am not getting it runtime.&lt;/P&gt;&lt;P&gt;I need to do this as I want to use these checkboxes in javascript code as an array of controls.&lt;BR&gt;Please Help Me</description><pubDate>Wed, 28 Sep 2005 23:27:01 GMT</pubDate><dc:creator>vijay Soni</dc:creator></item><item><title>Verification of Login</title><link>http://community.instantasp.co.uk/Topic8637-23-1.aspx</link><description>Hi,&lt;/P&gt;&lt;P&gt;I am a newbie in asp.net. How do I verify whether I am logged in in vb or c#?&lt;/P&gt;&lt;P&gt;Scenario: I am a user browsing the website. If I decide to purchase something, how does it check whether I am logined in? &lt;/P&gt;&lt;P&gt;Thank you!!</description><pubDate>Mon, 26 Sep 2005 03:13:28 GMT</pubDate><dc:creator>zeiffelz</dc:creator></item><item><title>InstantKB.NET v1.x Installations</title><link>http://community.instantasp.co.uk/Topic8331-23-1.aspx</link><description>Just a few examples of how customers are using InstantKB.NET,&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;FONT color=#800080&gt;&lt;a target="_blank" href="http://www.xheo.com/xdn/kb/default.aspx"&gt;http://www.xheo.com/xdn/kb/default.aspx&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.xamlon.com/kb/"&gt;http://www.xamlon.com/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://kb.discountasp.net/"&gt;http://kb.discountasp.net/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://support.gamespy.com/"&gt;http://support.gamespy.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.zensupport.co.uk/knowledgebase/"&gt;http://www.zensupport.co.uk/knowledgebase/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://kb.webxites.com/"&gt;http://kb.webxites.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.sestech.com/KBase/"&gt;http://www.sestech.com/KBase/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.boundgrid.com/kb/"&gt;http://www.boundgrid.com/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.blue-pacific.com/support/kb/"&gt;http://www.blue-pacific.com/support/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.thegreenbutton.com/kb/"&gt;http://www.thegreenbutton.com/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://cygnion.org/instantkb/"&gt;http://cygnion.org/instantkb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://support.appliedi.net/"&gt;http://support.appliedi.net/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.ericjsmith.net/codesmith/kb/"&gt;http://www.ericjsmith.net/codesmith/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://support.opactive.com/"&gt;http://support.opactive.com/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.hawkgt.com/kb/"&gt;http://www.hawkgt.com/kb/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.idtdna.com/instantkb/default.aspx"&gt;http://www.idtdna.com/instantkb/default.aspx&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://kb.netug.de/default.aspx"&gt;http://kb.netug.de/default.aspx&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://council.timdc.govt.nz/instkb13ext/"&gt;http://council.timdc.govt.nz/instkb13ext/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://www.contact.manchester.gov.uk/instantkb12/"&gt;http://www.contact.manchester.gov.uk/instantkb12/&lt;/A&gt;&lt;BR&gt;&lt;a target="_blank" href="http://reviews.dotnetbookclub.org/default.aspx"&gt;http://reviews.dotnetbookclub.org/default.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you have a site running InstantKB.NET please don't hesitate to post your link within a new topic.</description><pubDate>Tue, 06 Sep 2005 07:06:10 GMT</pubDate><dc:creator>Ryan Healey</dc:creator></item><item><title>RSS Readers?</title><link>http://community.instantasp.co.uk/Topic8211-23-1.aspx</link><description>Hi all,&lt;br&gt;&lt;br&gt;Anyone have some good suggestions in regard to RSS Readers?  I'm looking to start using one, but I'd rather get a good one right off the bat.&lt;br&gt;&lt;br&gt;Do any of the readers display their content in a threaded view, to make RSS forum feeds easier to understand and navigate?&lt;br&gt;&lt;br&gt;Thanks...</description><pubDate>Wed, 24 Aug 2005 12:59:06 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Negotiating SSL and downloading files from https</title><link>http://community.instantasp.co.uk/Topic8132-23-1.aspx</link><description>&lt;TABLE cellSpacing=0 cellPadding=0 width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class=smalltxt vAlign=top&gt;As part of a daily routine I do, I open a secure website, (&lt;a target="_blank" href="https://...etc/"&gt;https://...etc&lt;/A&gt;) , type in a username and password, and that brings me to a index page where I download a new file each day.  I would like to figure out how to write a vb.net program that would do that for me.  Is this possible?  I use vb.net to write applications that perform SQL queries and crunch numbers but have no clue if it's possible to do what I want it to do.  If anyone knows, I would greatly appreciate any direction.  Thanks. &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description><pubDate>Wed, 17 Aug 2005 11:09:16 GMT</pubDate><dc:creator>riverwade</dc:creator></item><item><title>Completely unrelated XP and workgroups problem</title><link>http://community.instantasp.co.uk/Topic6562-23-1.aspx</link><description>Hello.&lt;/P&gt;&lt;P&gt;This has nothing to do with IF4 but hey you might know the answer.&lt;/P&gt;&lt;P&gt;A socalled tech expert came over to our office and switched my XP laptop to workgroup without checking that it wasn't already on a domain (which it is). As a result I now cannot log in to my laptop.&lt;/P&gt;&lt;P&gt;I want to avoid travelling to my company's IT support people tomorrow - anybody know how to fix it so I can log back in? Even a suggestion on the username prefix suffix etc would be great.&lt;/P&gt;&lt;P&gt;I have trawled through Google and Microsoft and they tell me to either hack a new admin password or give up and go to the IT department.&lt;/P&gt;&lt;P&gt;Anybody ever had this and solved it?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Liam</description><pubDate>Wed, 11 May 2005 10:19:43 GMT</pubDate><dc:creator>Liam Wickham</dc:creator></item><item><title>London Terrorist Attacks</title><link>http://community.instantasp.co.uk/Topic7596-23-1.aspx</link><description>I would like to take a moment to express my sympathies to all who have been touched be the recent terrorist activity, in London.</description><pubDate>Thu, 07 Jul 2005 08:28:05 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Credit Card Transactions &amp; Sales Tax rates</title><link>http://community.instantasp.co.uk/Topic7129-23-1.aspx</link><description>Hi all,&lt;br&gt;&lt;br&gt;I could use some advice...&lt;br&gt;&lt;br&gt;Credit Card Trasactions&lt;br&gt;1) Have any of you setup automated credit card transaction within your site?  If so, did you write the code or did you use a ready made .NET component?&lt;br&gt;2) Are there any credit card transaction manual methods that are somewhat smooth and efficient?&lt;br&gt;&lt;br&gt;Sales Tax Rates&lt;br&gt;1) I'll be charging sales tax in orders within a specific state.  I'm wondering how one acquires the sales tax rates (via zipcode) for a specific state?&lt;br&gt;&lt;br&gt;Any words of wisdom and experience would be greatly appreciated.&lt;br&gt;&lt;br&gt;Thanks...</description><pubDate>Mon, 06 Jun 2005 12:07:11 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Selling components? where?</title><link>http://community.instantasp.co.uk/Topic7092-23-1.aspx</link><description>Hey guys,&lt;/P&gt;&lt;P&gt;I have made a component that I am thinking of selling just because... but honestly I don't see the benefit of spending the money on hosting and taking credit cards online for it since it is a single component and may not sell much anyway. I just want to give it a shot and see what happens. What do you think my best options are? &lt;/P&gt;&lt;P&gt;Just an FYI, I have made a .NET TimeZone component that displays all timezones and calculates the correct time honoring the timezone rules in each country or state. It would behave similar to the way Windows timezone but it would be for the web. It is not a visual component, although I can easily make a wrapper dropdown combo for it.</description><pubDate>Sat, 04 Jun 2005 16:45:34 GMT</pubDate><dc:creator>fadi</dc:creator></item><item><title>This is all about Type Conversion</title><link>http://community.instantasp.co.uk/Topic6518-23-1.aspx</link><description>Hi every body ,&lt;/P&gt;&lt;P&gt;          I want to upload a file using ASP.NET and VB.NET . I had written a class in VJ# and I like to access the property with datatype byte[] . But When I like to access it Its showing sbyte[] . Now sbyte[] can not be done CType to byte . And I am facing the problem to write the file because it accepts only byte[] . Can any one help me out .&lt;/P&gt;&lt;P&gt;         Thanx in advance for all the answers&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Subhasis Chakraborty</description><pubDate>Tue, 10 May 2005 00:06:02 GMT</pubDate><dc:creator>.NETJUNK</dc:creator></item><item><title>Customizing the Article Printed template</title><link>http://community.instantasp.co.uk/Topic6441-23-1.aspx</link><description>In the Great State of Washington, USA:&lt;/P&gt;&lt;P&gt;Our company just purchased the InstantKB product and I am beginning the learning and testing stage.  One thing that I would like to do is customize the print form.  I see that you can modify or create your own templates and that is great, however when you view an article and then wish to print it, I would like to add our company logo to the top of that form.  Any assistance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Kudos to InstantASP support staff.  I submitted a question and received a very prompt and accurate response back resolving my issue.  Thanks.....&lt;/P&gt;&lt;P&gt;MERGEC</description><pubDate>Fri, 06 May 2005 11:00:43 GMT</pubDate><dc:creator>mergec</dc:creator></item><item><title>Can I get a second on my motion...</title><link>http://community.instantasp.co.uk/Topic5784-23-1.aspx</link><description>I would like to round up the designers of IE, Firefox, Mozilla, Opera, Safari, and any other browsers out there, along with the people responsible for CSS.  I would then like to lock them all up in a window-less room until they agree to get along and make all their products work the SAME way. &lt;/P&gt;&lt;P&gt;I believe that one day the whole web design world might collapse because there are so many browser differences, no one will make capable of making a site that behaves properly in all of them. LOL</description><pubDate>Wed, 20 Apr 2005 16:22:22 GMT</pubDate><dc:creator>Jimmy Stuart</dc:creator></item><item><title>Retrieving control values from within a DataList</title><link>http://community.instantasp.co.uk/Topic5704-23-1.aspx</link><description>Hi everyone,&lt;/P&gt;&lt;P&gt;I've been programming for many years, but have just started teaching myself .NET within the last year.. and I have an issue, in which I could use some of your expert advice ;)&lt;/P&gt;&lt;P&gt;(This is developed in vb.net)&lt;/P&gt;&lt;P&gt;I'm populating a Datalist on page load (if not ispostback).  There are are a series of controls, within the datalist (labels, a textbox, a hyperlink, a button &amp;amp; a dropdownlist).&lt;/P&gt;&lt;P&gt;When the button is clicked (CommandName = AddToCart), I'm retrieving the values of these controls and populating some session variables.  It works great for the textbox &amp;amp; dropdownlist, but for some reason I'm unable to retrieve the values from the labels &amp;amp; hyperlink.&lt;/P&gt;&lt;P&gt;The code compiles properly and executes properly, but the values from the labels &amp;amp; hyperlink are blank.&lt;/P&gt;&lt;P&gt;At this point, all of the controls, including the datalist, have enableviewstate = true&lt;/P&gt;&lt;P&gt;Here is the code, that I have within the Itemlist_ItemCommand sub procedure:&lt;/P&gt;&lt;P&gt;**************&lt;BR&gt;If e.CommandName = "AddToCart" Then&lt;/P&gt;&lt;P&gt;   Session("item_id") = CType(e.Item.FindControl("lbl_item_id"), Label).Text&lt;BR&gt;   Session("item_desc") = CType(e.Item.FindControl("hlinkitem_title"), HyperLink).Text&lt;BR&gt;   Session("price") = CType(e.Item.FindControl("price"), Label).Text&lt;BR&gt;   Session("quantity") = CType(e.Item.FindControl("lblqty"), TextBox).Text&lt;/P&gt;&lt;P&gt;   If CType(e.Item.FindControl("ddlsizes"), DropDownList).Enabled = True Then&lt;BR&gt;      Session("size_id") = CType(e.Item.FindControl("ddlsizes"), DropDownList).SelectedItem.Value&lt;BR&gt;      Session("size") = CType(e.Item.FindControl("ddlsizes"), DropDownList).SelectedItem.Text&lt;BR&gt;   Else&lt;BR&gt;      Session("size_id") = "0"&lt;BR&gt;      Session("size") = "No Size"&lt;BR&gt;   End If&lt;/P&gt;&lt;P&gt;End If&lt;BR&gt;***************&lt;/P&gt;&lt;P&gt;Here is the trace, of the itemlist:  (The problem controls seem to be the 'databoundliteralcontrols'...  This is where i could use some learning &amp;amp; your help)...&lt;/P&gt;&lt;P&gt;        Itemlist System.Web.UI.WebControls.DataList 5637 76 &lt;BR&gt;            Itemlist:_ctl0 System.Web.UI.WebControls.DataListItem 0 0 &lt;BR&gt;                Itemlist:_ctl0:_ctl0 System.Web.UI.LiteralControl 0 0 &lt;BR&gt;            Itemlist:_ctl1 System.Web.UI.WebControls.DataListItem 1288 0 &lt;BR&gt;                Itemlist:_ctl1:_ctl0 System.Web.UI.LiteralControl 39 0 &lt;BR&gt;                Itemlist:_ctl1:image System.Web.UI.WebControls.HyperLink 133 116 &lt;BR&gt;                Itemlist:_ctl1:_ctl1 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:title1 System.Web.UI.WebControls.Label 58 0 &lt;BR&gt;                    Itemlist:_ctl1:_ctl2 System.Web.UI.DataBoundLiteralControl 5 12 &lt;BR&gt;                Itemlist:_ctl1:_ctl3 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:hlinkitem_title System.Web.UI.WebControls.HyperLink 106 76 &lt;BR&gt;                    Itemlist:_ctl1:_ctl4 System.Web.UI.DataBoundLiteralControl 35 52 &lt;BR&gt;                Itemlist:_ctl1:_ctl5 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:price System.Web.UI.WebControls.Label 58 0 &lt;BR&gt;                    Itemlist:_ctl1:_ctl6 System.Web.UI.DataBoundLiteralControl 6 16 &lt;BR&gt;                Itemlist:_ctl1:_ctl7 System.Web.UI.LiteralControl 23 0 &lt;BR&gt;                Itemlist:_ctl1:lblqty System.Web.UI.WebControls.TextBox 136 0 &lt;BR&gt;                Itemlist:_ctl1:_ctl8 System.Web.UI.LiteralControl 24 0 &lt;BR&gt;                Itemlist:_ctl1:ddlsizes System.Web.UI.WebControls.DropDownList 0 124 &lt;BR&gt;                Itemlist:_ctl1:_ctl9 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:btnbuy System.Web.UI.WebControls.Button 260 68 &lt;BR&gt;                Itemlist:_ctl1:_ctl10 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:rval_qty System.Web.UI.WebControls.RangeValidator 289 0 &lt;BR&gt;                Itemlist:_ctl1:_ctl11 System.Web.UI.LiteralControl 15 0 &lt;BR&gt;                Itemlist:_ctl1:lbl_item_id System.Web.UI.WebControls.Label 59 0 &lt;BR&gt;                    Itemlist:_ctl1:_ctl12 System.Web.UI.DataBoundLiteralControl 1 8 &lt;BR&gt;                Itemlist:_ctl1:_ctl13 System.Web.UI.LiteralControl 13 0 &lt;BR&gt;*****************&lt;/P&gt;&lt;P&gt;Here are the session state traces, that I'm failing to retrieve values. (the dropdownlist and textbox return values correctly, but not the labels &amp;amp; hyperlink)&lt;/P&gt;&lt;P&gt;item_id System.String   &lt;BR&gt;item_desc System.String   &lt;BR&gt;price System.String   &lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;Along with CType, I have also attempted Directcast, with no luck..&lt;/P&gt;&lt;P&gt;Can anyone offer some much needed advice?&lt;/P&gt;&lt;P&gt;I'm sure I'm doing something stupid, but please be gentle :D</description><pubDate>Tue, 19 Apr 2005 20:56:57 GMT</pubDate><dc:creator>Bare</dc:creator></item><item><title>Hey all!</title><link>http://community.instantasp.co.uk/Topic5666-23-1.aspx</link><description>I'm thinking of upgrading to InstantForum.NET from my current forum (&lt;A href="http://www.norbville.info/forum"&gt;http://www.norbville.info/forum&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Do you guys have any tips to get more members to my forum?</description><pubDate>Mon, 18 Apr 2005 21:40:41 GMT</pubDate><dc:creator>danorbster</dc:creator></item><item><title>Validation of email addresses</title><link>http://community.instantasp.co.uk/Topic60-23-1.aspx</link><description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've just tried to sign up with my usual email address, however it was failed by the validator.&lt;/P&gt;&lt;P&gt;It seems that you can't have email addresses with '.'s before the @ sign. Ie &lt;A href="mailto:james.dales@consyse.com"&gt;james.dales@consyse.com&lt;/A&gt;&lt;/P&gt;</description><pubDate>Fri, 20 Sep 2002 08:28:00 GMT</pubDate><dc:creator>James Dales</dc:creator></item><item><title>Why do you delete test messages?</title><link>http://community.instantasp.co.uk/Topic46-23-1.aspx</link><description>&lt;P&gt;Why do you delete test messages at intervals?&lt;/P&gt;&lt;P&gt;Leave them so that we can see if the forum scales when there are thousands of messages...&lt;/P&gt;</description><pubDate>Tue, 17 Sep 2002 05:17:00 GMT</pubDate><dc:creator>hood</dc:creator></item><item><title>We welcome your comments</title><link>http://community.instantasp.co.uk/Topic4-23-1.aspx</link><description>&lt;P&gt;We welcome user feedback and are always open to suggestions or comments regarding any of our products. Please feel free to post comments, questions or suggestions to this forum. We will respond to every post as quickly as possible.&lt;/P&gt;</description><pubDate>Mon, 09 Sep 2002 18:50:00 GMT</pubDate><dc:creator>Ryan Healey</dc:creator></item></channel></rss>