FAQ
FAQ
Miscellaneous
To get the user ID of the user who is currently logged in, you would get it using this:
System.Web.HttpContext.Current.User.Identity.Name VB.NET
C#
VB.NET
C#
VB.NET
1
C#
4.4 How do I determine if the user clicked a "Submit" button twice in the
page?
4.5 How to write date-time values of fields in a dataset into xml in a specific
format?
The tilde (~) in front of URLs means that these URLs point to the root of your web application.
Web developers are familiar with using relative paths for all links, including hyperlinks, images, and stylesheets, to
In ASP.NET when using User controls the relative paths can be difficult to use. The typical solution to this is to use
web-root absolute paths instead here, resulting in the hard-coded sub-directories that are common on ASP.NET
sites.
The correct solution to this problem is to use app-relative paths instead, which ASP.NET nicely makes possible
through the use of the tilde (~) prefix. Instead of <a href="/UC/Page.aspx">, use <a href="~/Page.aspx"
runat="server">. The same ~ notation works for images also, as long as you add runat="server". There is also a
ResolveUrl method that allows you to use ~ in your own code, which is one possible way to get stylesheet paths
4.7 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
2
Public Class MyClass1
Public Sub New()
End Sub
VB.NET
C#
4.8 How do I specify the Japanese locale for the controls in my Japanese
localized page?
• ASP.NET pages support Culture and UICulture attributes to support independent localized pages.
• Controls on pages can pick the culture of the page and can render culture-dependent content.
This is probably because you explicitly subscribed to the events in code and also specified the AutoEventWireUp of
Page to true (it's true by default). If so, the Page_Load, for example, will be fired once for your event subscription
and once because the Page subscribed it for you (by looking for a specific event handler method signature).
3
Dim strval As String = "Jack and Jill"
Dim strnewval As String = Regex.Replace(strval, " ", "")
Response.Write(strnewval)
C#
This error occurs if you are trying to fetch the recordset value as follows
rs.Fields("productname")
rs.Fields("productname").Value.ToString()
C#
rs.Fields["productname").Value.ToString() ;
4.12 Why do I get error "A generic error occurred in GDI+." when trying to
save the bitmap file?
May be the path of the file you are giving is wrong or you do not have write permissions on the specific folder.
4.13 How can I force a Save As dialog box from an ASP.NET Web page.
VB.NET
Response.Clear()
Response.AppendHeader("content-disposition", "attachment; filename=document1.doc")
Response.ContentType = "text/plain"
Response.WriteFile(Server.MapPath("document1.doc"))
4
Response.Flush()
Response.End()
C#
Response.Clear();
Response.AppendHeader("content-disposition", "attachment; filename=document1.doc");
Response.ContentType = "text/plain";
Response.WriteFile(Server.MapPath("document1.doc"));
Response.Flush();
Response.End();
Here are some interesting articles that talk about encryption and decryption:
4.16 How can I trigger a submit on my form when the enter key is pressed?
Also check out Andy Smith's DefaultButton Control which triggers submit selectively on one of many buttons based
on the context.
5
To get the list of aspx files under your app directory:
VB.NET
C#
The following aspx code will display the resultant files list in the DataGrid in a proper format:
An HttpHandler is a class that handles HTTP requests. In ASP.Net a Page class, for example, is the default
HttpHandler for files with a .aspx extension. You can map different file extensions to different HttpHandlers in
ASP.Net. When the web server receives a request for a file, it looks in its configuration to find out whether a special
HttpHandler has been designated for that file extension. ASP.Net provides the HttpHandler class to extend the
functionality of ASP.net to be able to handle requests for other file types (extensions). In IIS, you make ASP.Net the
HttpHandler for the type of file that you desire, and use the web.config file for your web to identify what DLL (Class
The HttpHandler is a class that handles the request. It has access to the same HttpContext (Request, Response,
Cookies, Session, Application, Server, etc) that the Page class does. For more detailed information, see:
HttpHandlers
6
4.19 How to get the size of a byte array?
VB.NET
myByteArray.Length
C#
myByteArray.Length;
4.20 How to know the width and height in pixels of a given image
programmatically?
You will have to create a Bitmap instance from the image file and then query the Width and Height as follows:
VB.NET
C#
When FormsAuthentication is used in ASP.NET, by default, it gets redirected to the default.aspx page.
To redirect it to some other page other than default.aspx you have to use the code below.
VB.NET
FormsAuthentication.SetAuthCookie(txtUsername.Text,false)
Response.Redirect("someotherpage.aspx")
7
C#
FormsAuthentication.SetAuthCookie(txtUsername.Text,false);
Response.Redirect("someotherpage.aspx");
4.22 Is there a control in ASP.NET for geting HTML like the ASPHTTP for the
classic asp.
Use System.Net.HttpWebRequest
o WebRequest is the abstact base class for the .NET Framework's request/response model for
o WebResponse is the abstract base class from which protocol specific response classes are derived.
VB.NET
8
strHTML = sr.ReadToEnd
sw = File.CreateText(Server.MapPath("temp.html"))
sw.WriteLine(strHTML)
sw.Close()
Response.WriteFile(Server.MapPath("temp.html"))
End Sub
C#
WebRequest mywebReq ;
WebResponse mywebResp ;
StreamReader sr ;
string strHTML ;
StreamWriter sw;
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
mywebReq = WebRequest.Create("http://www.syncfusion.com/faq.asp");
mywebResp = mywebReq.GetResponse();
sr = new StreamReader(mywebResp.GetResponseStream());
strHTML = sr.ReadToEnd();
sw = File.CreateText(Server.MapPath("temp.html"));
sw.WriteLine(strHTML);
sw.Close();
Response.WriteFile(Server.MapPath("temp.html"));
}
Note:For creating the file (in above case "temp.html") give appropriate rights (modify and write) to the ASPNET
user.
To specify the Encoding specify the second parameter of the StreamReader accordingly
VB.NET
C#
This usually happens when encryption is enabled for ViewState in all your pages but the different server machines
use different Validation Keys for encrypting. Ensure that all the machines has the same validation key specified in
9
their machine.config file. For example, add the following key:
<machinekey validation='3DES'>
VB.NET
C#
4.27 How to Select a record using Listbox and edit/update it's fields using
textboxes?
<TABLE class="cdb-AltRow2" id="Table1" style="Z-INDEX: 101; LEFT: 189px; POSITION: absolute; TOP: 20px"
cellSpacing="1" cellPadding="1" width="300" border="0">
<TR>
<TD>ProductID</TD>
<TD><asp:textbox id="txtProductId" runat="server" Enabled="False"></asp:textbox></TD>
</TR>
<TR>
<TD>Qunatity per unit</TD>
<TD><asp:textbox id="txtQuantity" runat="server"></asp:textbox></TD>
</TR>
<TR>
<TD>UnitPrice</TD>
<TD><asp:textbox id="txtUnitPrice" runat="server"></asp:textbox></TD>
</TR>
<TR>
<TD></TD>
10
<TD><asp:button id="btnUpdate" runat="server" Text="Update"></asp:button></TD>
</TR>
<TR>
<TD></TD>
<TD><asp:label id="lblError" runat="server" Visible="False"></asp:label></TD>
</TR>
</TABLE>
<asp:listbox id="ListBox1" style="Z-INDEX: 102; LEFT: 8px; POSITION: absolute; TOP: 12px" runat="server"
AutoPostBack="True"></asp:listbox>
VB.NET
11
strSQL = "Select * from Products where productid =" + productid
mycn = New SqlConnection(strConn)
mycmd = New SqlCommand(strSQL, mycn)
mycn.Open()
dr1 = mycmd.ExecuteReader(CommandBehavior.CloseConnection)
If dr1.Read() Then
txtProductId.Text = dr1("ProductId").ToString()
txtQuantity.Text = dr1("QuantityPerUnit").ToString()
txtUnitPrice.Text = dr1("UnitPrice").ToString()
Else
Response.Write("No data found")
End If
End Sub 'ListBox1_SelectedIndexChanged
C#
string productid;
string strSQL;
string strConn;
SqlDataReader dr,dr1;
SqlConnection mycn;
SqlCommand mycmd;
12
{
lblError.Visible =true;
lblError.Text =(ex.Message );
}
}
4.28 How to select a value from a child form and send it to parent form?
page1.aspx
<asp:TextBox id="txtSelect" style="Z-INDEX: 101; LEFT: 186px; POSITION: absolute; TOP: 19px"
runat="server"></asp:TextBox>
<a
href="javascript:my_window=window.open('page2.aspx?formname=Form1.txtSelect','my_window','width=300,height=300');my_
Select CategoryName</a>
page2.aspx
<asp:DropDownList id="DropDownList1" style="Z-INDEX: 101; LEFT: 180px; POSITION: absolute; TOP: 66px"
runat="server" AutoPostBack="True">
<asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 16px; POSITION: absolute; TOP: 66px" runat="server">Select
Category Name
<asp:Literal id="Literal1" runat="server">
VB.NET
13
DropDownList1.DataTextField = "CategoryName"
DropDownList1.DataValueField = "CategoryId"
DropDownList1.DataBind()
End If
End Sub
C#
VB.NET
14
Dim delimiter As Char() = delimStr.ToCharArray()
Dim s As String
For Each s In myString.Split(delimiter)
Response.Write((s.ToString() + "<br>"))
Next
C#
Specify the pageLayout of the Document from GridLayout to FlowLayout, this will position the controls automatically
and optimally.
Use the global.asax file and listen to the PostRequestHandlerExecute event of the Global object.
VB.NET
4.32 How can I have multiple command buttons map to the same event or
function?
Simply use the same handler for the different button Click events.
15
VB.NET
C#
// In InitializeComponent
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Button2.Click += new System.EventHandler(this.Button1_Click);
16
You can make use of a DataReader.
4.36 How to set a <link> tag's href attribute at runtime using a value
specified in the web.config file?
web.config
<configuration>
<appSettings>
<add key="CSS1" value="StyleSheet1.css" />
</appSettings>
</configuration>
.aspx
VB.NET
C#
4.37 How to call the Page_load procedure from any event on the page?
VB.NET
17
C#
4.38 How to add login user (ASPNET) to MS SQL 2000 Desktop Engine server?
osql -S servername\instancename -E -q
--Line numbers will appear
EXEC sp_grantlogin 'machinename\ASPNET'
go
use
go
Add reference -> COM tab ->Microsoft Excel 11.0 Object Library
VB.NET
C#
18
Microsoft.Office.Interop.Excel.Application excelApp = new Microsoft.Office.Interop.Excel.Application();
excelApp.Workbooks.Open ( Server.MapPath ("excel1.xls"), Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing );
Microsoft.Office.Interop.Excel.Worksheet wks;
wks =(Microsoft.Office.Interop.Excel.Worksheet)excelApp.ActiveSheet;
Label1.Text =wks.UsedRange.Count.ToString();
excelApp.Workbooks.Close();
4.40 What are the pros and cons of using Session or Cache to save
intermediate state?
To store in Session:
Pros:
• If you use StateServer or SQLServer mode, you can access your session state across the webfarm. (can't
Cons:
• If you use StateServer or SQLServer mode, your object must be serializable, and you pay the performance
To use cache:
Pros:
• Can use cache dependencies or other cache features to control its lifetime
Cons:
4.41 How to mirror (align elements Right to Left) a form or control on a form?
Process of switching of User Interface between left to right i.e English, German ...and right to left such as
19
To mirror a form
<html dir="rtl">
You can use Http Compression to compress static aspx files. Refer Microsoft Knowledge Base Article - 322603
For security reasons, you can't force a user to run any executable.
Instead give user the option to click on it and download the executable, and execute it if he wants to. All you can do
is put .exe in a directory on your web site and put a hyperlink to it on some page.
Note : Be sure to secure this directory by deactivating all execution permissions both in the IIS console and in the
directory ACL
For more details refer INFO: Executing Files by Hyperlink and the File Download Dialog Box
The reason why the encrypted data couldn't be decrypted on another machine is because the validation key in the
original machine's machine.config is set to AutoGenerate. This means that the generated keys are unique to each
machine. A better solution will be to specify the validation key, so you can decrypt it across any machine with the
same validation key. For more details on solutioon refer following article :
You'll have to create an account in SQL Server for the aspnet user.
20
• Start enterprise manager-> expand the server-> select security->Right-click in the right view and select
new login,
• enter the DOMAIN\USERNAME and select your database as the default database of the user at the bottom
of the page,
• Select last tab Database Access -> select your database, and add the db_datareader and db_datawriter
VB.NET
If User.Identity.IsAuthenticated Then
'Your code
End If
C#
if (User.Identity.IsAuthenticated )
{
//Your code
}
4.47 How to get the Computer Name on which the code is running?
This will return the information of the server computer, not the client browser computer.
VB.NET
Response.Write(System.Windows.Forms.SystemInformation.ComputerName)
C#
Response.Write(System.Windows.Forms.SystemInformation.ComputerName);
21
4.48 How to pass argument to accessdatasourcecontrol selectcommand
statement?
VB.NET
C#
4.49 How to compile CS/VB file and place new DLL in bin subdirectory?
Assuming your command window has the appropriate path set to use the following exes:
C# compiler csc.exe
or
The .aspx pages are the only ones that support the Src attribute, and therefore it's the only file type that supports
JIT compilation of separate source files.By using the Src attribute in the page directive, you can specify which file
22
the ASP.NET engine should compile.
This means that you must precompile the code behind class that is to be used as the basis for the Web Service,
either manually using the Command-line compiler or by building a Visual Studio.NET Web Service Application.
4.51 How to display random images on a web page from a set of images in a
directory?
</td>
</tr>
</table>
C#
23
4.52 How can I scan a string to determine if it contains DBCS chars?
VB.NET
'In Page_Load
dim originalString as string = "a±"
Response.Write (IsAsciiString(originalString))
C#
If Request.ServerVariables("LOGON_USER") is returning an empty string, the problem is probably that your app
24
• Uncheck 'Enable anonymous'.
You can examine the Request.UserAgent to check if the browser was IE, define a custom HtmlGenericControl type
representing your stylesheet link and set the href property on it depending on if the browser was IE.
VB.NET
lnkStyle.Attributes("href") = "ie/styles.css"
C#
lnkStyle.Attributes["href"] = "ie/styles.css" ;
<configuration>
<appSettings>
<add key="PageSize" value="10">
</add>
</appSettings>
</configuration>
VB.NET
Response.Write (ConfigurationSettings.AppSettings("PageSize"))
C#
25
Response.Write (ConfigurationSettings.AppSettings["PageSize"] );
4.56 Why do I get "do not have permissions" error when accessing a Access
mdb file in my local system?
This could be because of security concerns. Please check this KB for resolutions:
KB 316675
To access an MS Access database from your ASP.Net page, you must use the UNC format in the path, like:
\\Servername\yourpath\your.mdb
To fully use the database, grant permissions to the ASPNet user account equal to 'modify', for the folder/directory
26