How can I reference simple DLL which contains one class but has no namespace assigned to it in an .aspx page?
You don’t need a namespace to reference it; anything in the bin folder is implicitly in the same namespace as the page being compiled. So if your class looks like this: MyClass1 mc = new MyClass1(); Response.Write(mc.getTheName);
How to use absolute positioning for controls in a web page in VS2005?
To get the items absolutely positioned navigate through the menu as below and set Tools -> Options -> HTML Designer -> CSS Positioning -> Check the CheckBox positioning->Select Absolutely positioned to absolutely positioned.
How can you apply skin styles to button?
Apply Skin Styles to webcontrols(Textbox,button) private Style CreateStyle(Color backClr, Color foreClr, int borderWidth, string fntName, int fntSize, bool fntBold, bool fntItalic /*Youcanaddmoreparameters to the method */) { Style s = new Style(); s.BackColor = backClr; s.ForeColor = foreClr; s.BorderWidth = borderWidth; s.Font.Name = fntName; s.Font.Size = fntSize; s.Font.Bold = fntBold; s.Font.Italic = fntItalic; return s; } // This method applies a Style object to a WebControl private void SetControlStyle(System.Web.UI.WebControls.WebControl ctrl,Style s) { ctrl.ApplyStyle(s); } private void Button1_Click(object sender, System.EventArgs e) { Style st = CreateStyle(Color.Green, Color.Yellow, 3,’Verdana’, 10, true, true); SetControlStyle(TextBox1, st); st = CreateStyle(Color.Red, Color.Black, 2,’Verdana’, 12, true, true); SetControlStyle(Button1, st); }
How can we convert an ASP.NET page to HTML?
We can use the following codings to convert the ASP.NET page to HTML page, using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.IO; using System.Net; publicpartialclass_Default : System.Web.UI.Page { WebRequest mywebRequest; WebResponse mywebResponse; StreamReader sr; string strHTML; StreamWriter sw; protected void Page_Load(object sender, EventArgs e) { mywebRequest = WebRequest.Create(‘http://www.syncfusion.com/Corporate/default.aspx’); mywebResponse = mywebRequest.GetResponse(); sr = new StreamReader(mywebResponse.GetResponseStream()); strHTML = sr.ReadToEnd(); sw = File.CreateText(Server.MapPath(‘temp.html’)); sw.WriteLine(strHTML); sw.Close(); } } Now the Html Code of (‘http://www.syncfusion.com/Corporate/default.aspx’) will be placed in the application folder by the name temp.html
What is the difference between Session and ViewStates?
Sesseion is data stored per user session. ViewState is a way for the application to maintain state about a particular form and its child controls.