Is it possible to pass a querystring from an .asp page to aspx page?
Yes you can pass querystring from .asp to ASP.NET page .asp <%response.redirect ‘webform1.aspx?id=11’%> .aspx VB.NET Response.Write (Request(‘id’).ToString ()) C# Response.Write (Request[‘id’].ToString ());
Are there any IE specific performance improvement possible with Table Layout
In IE5 and later, significantly faster Table Rendering is now possible. Here is some information in MSDN : Enhancing Table Presentation. Among other things, you can specific col specific widths using the colgroup tag or col tag and also set the visibility of rows and columns using special styles.
Are there any resources regarding the Mozilla specific Browser Objects and CSS information
Official Gecko DOM Reference: Gecko Dom Reference Here is a very useful list of custom CSS styles specific to Mozilla: XUL Planet
How can I display the calendar control in different languages according to the navigator culture
Use namespace System.Threading System.Globalization <p> <asp:dropdownlist id=’DropDownlist1′ runat=’server’></asp:dropdownlist></p> <p> <asp:Button id=’Button1′ runat=’server’ Text=’Button’></asp:Button></p> <asp:calendar id=’Calendar1′ runat=’server’></asp:calendar> VB.NET Dim userLang() As String Dim strLang As String Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ’Put user code to initialize the page here userLang = Request.UserLanguages ViewState(‘userLanguage’) = userLang(userLang.GetUpperBound(0)) If ViewState(‘userLanguage’) = ” Then ViewState(‘userLanguage’) = ‘en-US’ End If Dim ci As CultureInfo For Each ci In CultureInfo.GetCultures(CultureTypes.AllCultures) If Not ci.IsNeutralCulture Then DropDownlist1.Items.Add(ci.ToString) End If Next Dim dtNow As Date = DateTime.Now strLang = ViewState(‘userLanguage’) Thread.CurrentThread.CurrentUICulture = New CultureInfo(strLang, False) Thread.CurrentThread.CurrentCulture = New CultureInfo(strLang) Calendar1.SelectedDate = dtNow Calendar1.VisibleDate = dtNow End Sub Private Sub Calendar1_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Calendar1.SelectionChanged strLang = ViewState(‘userLanguage’) Thread.CurrentThread.CurrentUICulture = New CultureInfo(strLang, False) Thread.CurrentThread.CurrentCulture = New CultureInfo(strLang) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click strLang = DropDownlist1.SelectedItem.Text ViewState(‘userLanguage’) = strLang Thread.CurrentThread.CurrentUICulture = New CultureInfo(strLang, False) Thread.CurrentThread.CurrentCulture = New CultureInfo(strLang) End Sub C# string[] userLang; string strLang; private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here userLang = Request.UserLanguages; ViewState[‘userLanguage’] = userLang[userLang.GetUpperBound(0)]; if( ViewState[‘userLanguage’].ToString () == ” ) { ViewState[‘userLanguage’] = ‘en-US’; } foreach(CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures)) { if(!ci.IsNeutralCulture) { DropDownlist1.Items.Add(ci.ToString()); } } DateTime dtNow = DateTime.Now; strLang =(string) ViewState[‘userLanguage’]; Thread.CurrentThread.CurrentUICulture = new CultureInfo(strLang, false); Thread.CurrentThread.CurrentCulture =new CultureInfo(strLang); Calendar1.SelectedDate = dtNow; Calendar1.VisibleDate = dtNow; } private void Calendar1_SelectionChanged(object sender, System.EventArgs e) { strLang =(string) ViewState[‘userLanguage’].ToString (); Thread.CurrentThread.CurrentUICulture = new CultureInfo(strLang, false); Thread.CurrentThread.CurrentCulture = new CultureInfo(strLang); } private void Button1_Click(object sender, System.EventArgs e) { strLang = DropDownlist1.SelectedItem.Text; ViewState[‘userLanguage’] = strLang; Thread.CurrentThread.CurrentUICulture =new CultureInfo(strLang, false); Thread.CurrentThread.CurrentCulture = new CultureInfo(strLang); }
Why do i get the error message ‘Object must implement IConvertible’
(I don’t understand ‘tyring to insert/update data’, ‘webcontrol is not associated with it’s property’!) // if you write code using parametrized query as paramxxx.value = textbox1 it’ll show above error to resolve it it should be paramxxx.value =textbox1.text //This kind of error message can occur when you are trying to insert/update data or any kind of operation which involves textbox/dropdownlist The issue occurs if the webcontrol is not associated with its property May be you have not associated the appropriate property of the control i.e textBox1.Text or dropdownlist1.SelectedItem.Value