User niaher - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:39:23Zhttp://stackoverflow.com/feeds/user/111438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/440675/compile-error-cs0433-on-pre-compiled-asp-net-2-0-site/1774762#17747620Answer by niaher for Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.niaher2009-11-21T06:51:39Z2009-11-21T06:51:39Z<p>I just had this problem. It turns out that, I accidentally drag-&-dropped files from one project to another, which created a duplicate. It took me a while to find the problem, because the files were hidden within the Properties folder (which I never look into).</p>
<p>In any case, what helped me solve the problem was going into the file that was throwing the error, r-clicking on the erroneous line and "going to definition". Being in the definition, you can see which physical file you are looking at. If it isn't what it is supposed to be, then you found your problem. </p>
<p>I know this is trivial, but it wasted me around 1 hour of time, so hope this info would be useful to anyone.</p>
http://stackoverflow.com/questions/1767698/does-covering-index-duplicate-data0Does Covering Index Duplicate Data?niaher2009-11-20T01:04:51Z2009-11-20T01:41:43Z
<p>Suppose we have this index</p>
<pre><code>CREATE INDEX IX_test ON t1(c1) INCLUDE (c2)
</code></pre>
<p>Does this mean that we will have c2 in both index page and the actual data page? The real question is - does updating c2 mean that SQL Server will have to update IX_test and the actual data row (clustered index)?</p>
http://stackoverflow.com/questions/1737884/how-to-block-returning-a-resultset-from-stored-procedure0How to block returning a resultset from stored procedure?niaher2009-11-15T15:46:52Z2009-11-15T18:04:40Z
<p>I have a stored procedure that returns multiple resultsets, it looks something like this</p>
<pre><code>BEGIN
SET NOCOUNT ON;
SELECT c1, c2, c3
FROM t1
WHERE id = @id
IF (@@ROWCOUNT = 0)
BEGIN
SELECT c1, c2, c3
FROM t2
WHERE id = @id
END
END
</code></pre>
<p>I use this stored procedure in my front-end ASP.NET website.</p>
<p>If the first SELECT statement did not return any rows I get 2 resultsets (1st one is obviously empty) in my SqlDataReader. <strong>Is there a way to return only the resultset from the last SELECT statement?</strong></p>
http://stackoverflow.com/questions/1685018/are-stored-procedures-atomic1Are Stored Procedures Atomic? [closed]niaher2009-11-06T02:20:40Z2009-11-06T02:38:06Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/259803/t-sql-2005-2008-stored-procedure-execution-atomic">T-SQL (2005/2008) Stored Procedure Execution ‘atomic’?</a> </p>
</blockquote>
<p>Does MS SqlServer guarantee execution of an entire stored procedure (until the END statement) or is there a possibility of having that stored procedure executing only partially (due to power cut for example)?</p>
http://stackoverflow.com/questions/995589/set-nocount-off-or-return-rowcount2SET NOCOUNT OFF or RETURN @@ROWCOUNT?niaher2009-06-15T11:23:19Z2009-08-26T18:36:51Z
<p>I am creating a stored procedure in Sql Server 2008 database. I want to return the number of rows affected. Which is a better option SET NOCOUNT OFF or RETURN @@ROWCOUNT?</p>
<pre><code>ALTER PROCEDURE [dbo].[MembersActivateAccount]
@MemberId uniqueidentifier
AS
BEGIN
-- Should I use this?
SET NOCOUNT OFF;
UPDATE [dbo].Members SET accountActive = 1 WHERE id = @MemberId;
--Or should I SET NOCOUNT ON and use the following line instead?
--return @@ROWCOUNT;
END
</code></pre>
<p>I know that both work, but which is a better choice and why?</p>
<p><hr /></p>
<p>After some trying I am coming to a conclusion that SET NOCOUNT is OFF by default inside stored procedures. Is it possible to change this behavior inside my database?</p>
http://stackoverflow.com/questions/903632/sharpen-on-a-bitmap-using-c/1319999#13199992Answer by niaher for Sharpen on a Bitmap using C#niaher2009-08-24T00:41:10Z2009-08-24T00:41:10Z<p>I took Daniel's answer and modified it for performance, by using BitmapData class, since using GetPixel/SetPixel is very expensive and inappropriate for performance-hungry systems. It works exactly the same as the previous solution and can be used instead.</p>
<pre><code> public static Bitmap Sharpen(Bitmap image)
{
Bitmap sharpenImage = (Bitmap)image.Clone();
int filterWidth = 3;
int filterHeight = 3;
int width = image.Width;
int height = image.Height;
// Create sharpening filter.
double[,] filter = new double[filterWidth, filterHeight];
filter[0, 0] = filter[0, 1] = filter[0, 2] = filter[1, 0] = filter[1, 2] = filter[2, 0] = filter[2, 1] = filter[2, 2] = -1;
filter[1, 1] = 9;
double factor = 1.0;
double bias = 0.0;
Color[,] result = new Color[image.Width, image.Height];
// Lock image bits for read/write.
BitmapData pbits = sharpenImage.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
// Declare an array to hold the bytes of the bitmap.
int bytes = pbits.Stride * height;
byte[] rgbValues = new byte[bytes];
// Copy the RGB values into the array.
System.Runtime.InteropServices.Marshal.Copy(pbits.Scan0, rgbValues, 0, bytes);
int rgb;
// Fill the color array with the new sharpened color values.
for (int x = 0; x < width; ++x)
{
for (int y = 0; y < height; ++y)
{
double red = 0.0, green = 0.0, blue = 0.0;
for (int filterX = 0; filterX < filterWidth; filterX++)
{
for (int filterY = 0; filterY < filterHeight; filterY++)
{
int imageX = (x - filterWidth / 2 + filterX + width) % width;
int imageY = (y - filterHeight / 2 + filterY + height) % height;
rgb = imageY * pbits.Stride + 3 * imageX;
red += rgbValues[rgb + 2] * filter[filterX, filterY];
green += rgbValues[rgb + 1] * filter[filterX, filterY];
blue += rgbValues[rgb + 0] * filter[filterX, filterY];
}
int r = Math.Min(Math.Max((int)(factor * red + bias), 0), 255);
int g = Math.Min(Math.Max((int)(factor * green + bias), 0), 255);
int b = Math.Min(Math.Max((int)(factor * blue + bias), 0), 255);
result[x, y] = Color.FromArgb(r, g, b);
}
}
}
// Update the image with the sharpened pixels.
for (int x = 0; x < width; ++x)
{
for (int y = 0; y < height; ++y)
{
rgb = y * pbits.Stride + 3 * x;
rgbValues[rgb + 2] = result[x, y].R;
rgbValues[rgb + 1] = result[x, y].G;
rgbValues[rgb + 0] = result[x, y].B;
}
}
// Copy the RGB values back to the bitmap.
System.Runtime.InteropServices.Marshal.Copy(rgbValues, 0, pbits.Scan0, bytes);
// Release image bits.
sharpenImage.UnlockBits(pbits);
return sharpenImage;
}
</code></pre>
http://stackoverflow.com/questions/1253398/pass-bitmap-object-to-unmanaged-code0Pass Bitmap object to unmanaged codeniaher2009-08-10T06:36:17Z2009-08-10T06:43:58Z
<p>I have the following function in C++ managed (ref) class:</p>
<pre><code>public static void Transform(Bitmap^ img);
</code></pre>
<p>I want to call it from C# managed code. What I do is this:</p>
<pre><code>Bitmap image = new Bitmap(100, 100);
MyClass.Transform(image);
</code></pre>
<p>Is this correct, or do I need to use fixed statement? If so, then how?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1162791/jquery-query-string-traversal3JQuery query string traversal [closed]niaher2009-07-22T02:38:15Z2009-07-22T08:58:00Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/647259/javascript-query-string">JavaScript query string</a><br />
<a href="http://stackoverflow.com/questions/901115/get-querystring-with-jquery">get querystring with jQuery</a> </p>
</blockquote>
<p>Is there an object/method in javascript to turn a string like this: "param1=2&param2=1&param3=5" into some sort of dictionary, so that I can refer to each element as mystring['param1'] or mystring[0]?</p>
<p>Can jQuery help here?</p>
http://stackoverflow.com/questions/1147156/graphics-object-to-image-file0Graphics object to image fileniaher2009-07-18T10:04:34Z2009-07-18T11:02:57Z
<p>I would like to crop and resize my image. Here is my code:</p>
<pre><code> Image image = Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + "Cropper/tests/castle.jpg");
// Crop and resize the image.
Rectangle destination = new Rectangle(0, 0, 200, 120);
Graphics graphic = Graphics.FromImage(image);
graphic.DrawImage(image, destination, int.Parse(X1.Value), int.Parse(Y1.Value), int.Parse(Width.Value), int.Parse(Height.Value), GraphicsUnit.Pixel);
</code></pre>
<p>Now I assume that my resulting cropped/resized image is stored in the <em>graphics</em> object. Question is - how do I save it to a file?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1066835/how-do-you-center-a-textbox-inside-an-asp-panel/1066911#10669110Answer by niaher for How do you center a textbox inside an ASP panel?niaher2009-07-01T01:34:15Z2009-07-01T01:34:15Z<p>Here's the code that I used earlier for one of my pages. This is plain HTML, but I guess it should be no trouble for you to modify it for asp controls. Basically the content of the inner div (content) is always positioned in center both vertically and horizontally.</p>
<pre><code><div id="container" style="position:relative; height:100px;border:1px solid #000;">
<div id="content" style="border:1px solid #000; position:absolute; top:50%; left:0px; width:100%; height:20px; margin-top:-10px; text-align:center;">When inserting <b>element</b> here you need to modify <b>height=elementHeight, margin-top=elementHeight/2</b> of the outer div (id="content").</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1030339/sql-processing-vs-asp-net-runtime-processing0Sql Processing vs. ASP.NET Runtime processingniaher2009-06-23T02:14:01Z2009-06-23T03:16:59Z
<p>I know in general it is a good practice to move as much processing as possible from Sql Server to the application (in my case ASP.NET). However what if the processing on the application level means passing 30+ extra parameters to the Sql Server. In this case is it worth moving the processing to the Sql Server?</p>
<p>Here's the specific dilemma I am facing - which procedure will offer better performance overall?</p>
<pre><code>CREATE PROCEDURE MyProc1
@id int
AS BEGIN
UPDATE MyTable
SET somevalue1 = somevalue1 + 1,
somevalue2 = somevalue2 + 1,
somevalue3 = somevalue3 + 1,
...
somevalueN = somevalueN + 1
WHERE id = @id
END
</code></pre>
<p>Or</p>
<pre><code>CREATE PROCEDURE MyProc2
@id int,
@somevalue1 int,
@somevalue2 int,
@somevalue3 int,
...
@somevalueN int
AS BEGIN
UPDATE MyTable
SET somevalue1 = @somevalue1,
somevalue2 = @somevalue2,
somevalue3 = @somevalue3,
...
somevalueN = @somevalueN
WHERE id = @id
END
</code></pre>
<p>I am using a managed hosting, but I guess it is valid to assume that Sql Server and ASP.NET runtime reside on the same machine, so the transfer of data between the two would probably be pretty fast/negligible(or is it).</p>
<p><hr /></p>
<p>The 30 Parameters are basically totalNumberOfRatings for different items. So whenever a user of my web app gives a new rating for itemN then totalNumberOfRatingsItemN is incremented by 1. In most cases the rating will be given to several items (but not necessarily all), so totalNumberOfRatings is not the same for different items.</p>
http://stackoverflow.com/questions/1024018/sql-stored-procedure-with-a-lot-of-parameters0Sql Stored Procedure With a Lot of Parametersniaher2009-06-21T14:26:43Z2009-06-22T08:53:59Z
<p>I am using Sql Server 2008. My Stored Procedure accepts almost 150 parameters. Is there anything wrong with that performance-wise?</p>
http://stackoverflow.com/questions/1010148/table-with-a-lot-of-columns0Table with a lot of columnsniaher2009-06-18T00:15:21Z2009-06-18T00:47:02Z
<p>If my table has a huge number of columns (over 80) should I split it into several tables with a 1-to-1 relationship or just keep it as it is? Why? My main concern is performance.</p>
<p>PS - my table is already in 3rd normal form.</p>
<p>PS2 - I am using MS Sql Server 2008.</p>
<p>PS3 - I do not need to access all table data at once, but rather have 3 different categories of data within that table, which I access separately. It is something like: member preferences, member account, member profile.</p>
http://stackoverflow.com/questions/984599/vs2008-load-testing-page-response-time0VS2008 Load Testing - Page Response Timeniaher2009-06-12T01:18:29Z2009-06-12T08:59:00Z
<p>Hi. I am running a load test from VS 2008 on my asp.net web application. The thing I notice is that for some of my pages <em>Average Page Time</em> is around 20.</p>
<p>Does this mean it takes 20 seconds for the server to render the page before it sends the request? Or is it simply 20 seconds until the whole page is fully loaded on the client's browser?</p>
<p>Does this statistic take Network Type into an account; so say that I change from 52kbps to 1.5mbps, is this statistic supposed to change?</p>
<p>Another thing is - my Average Response Time is 0.21, whilst some pages have Average Page Time at 20. Why is it so different? What does each mean?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/984741/ca1305-int-parsestring1CA1305: int.Parse(String)niaher2009-06-12T02:32:26Z2009-06-12T02:36:18Z
<p>I am getting a CA1305 Warning.</p>
<blockquote>
<p>Microsoft.Globalization : Because the
behavior of 'int.Parse(string)' could vary based on the
current user's locale settings,
replace this call in
'_Default.CalculateImageButton_Click(object,
ImageClickEventArgs)' with a call to
'int.Parse(string,
IFormatProvider)'. If the result of
'int.Parse(string,
IFormatProvider)' will be displayed to
the user, specify
'CultureInfo.CurrentCulture' as the
'IFormatProvider' parameter.
Otherwise, if the result will be
stored and accessed by software, such
as when it is persisted to disk or to
a database, specify
'CultureInfo.InvariantCulture'.</p>
</blockquote>
<p>What exactly can go wrong if I omit specifying the culture when parsing Int32?</p>
http://stackoverflow.com/questions/944431/asp-net-routing-and-regular-expressions1ASP.NET Routing and Regular Expressionsniaher2009-06-03T12:24:10Z2009-06-08T01:54:34Z
<p>I am trying to enable a route like the following</p>
<pre><code>route = new Route("{w1}-{c1}-{n1},{w2}-{c2}-{n2}", new ResultRouteHandler());
route.Constraints = new RouteValueDictionary();
route.Constraints.Add("c1", "(.*)|([-])");
route.Constraints.Add("c2", "(.*)|([-])");
RouteTable.Routes.Add(route);
</code></pre>
<p>However I run into a problem when c1 or c2 is "-". For example "a-b-c,d---f" returns 404 (whilst "a-b-c,d-e-f" works fine). Anyone has a clue what am I doing wrong? Thank you in advance.</p>
<p><strong>EDIT:</strong></p>
<p>I found a simple workaround for this problem:</p>
<pre><code>route = new Route("{w1}-{c1}-{n1},{w2}---{n2}", new MyRouteHandler());
RouteTable.Routes.Add(route);
route = new Route("{w1}-{c1}-{n1},{w2}-{c2}-{n2}", new MyRouteHandler());
RouteTable.Routes.Add(route);
</code></pre>
<p>If c2 is "-" we match to the first route, otherwise to the second.</p>
http://stackoverflow.com/questions/960891/difficulty-in-a-young-programmers-understanding-and-hints-to-help-progress/960912#9609120Answer by niaher for Difficulty in a young programmer's understanding, and hints to help progress.niaher2009-06-07T00:40:13Z2009-06-07T00:40:13Z<p>To understands the ins and outs of what's going on behind your code I would suggest reading one of "Programming Languages" books, <a href="http://rads.stackoverflow.com/amzn/click/1887902767" rel="nofollow">here's a good one</a>.</p>
<p>If you want to learn how to architect applications, the best approach is to learn some design patterns and try applying them, however make no mistake and try to learn all of them at once, since you will be just overloaded with information and lost. Just take your time understand and remember each one of them. Here's <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">a good book</a> for learning that.</p>
<p>Remember there are no shortcuts and fast way to become an expert, it all takes years of practice and experience, so just enjoy the process and don't rush.</p>
http://stackoverflow.com/questions/958687/disable-session-from-master-page0Disable Session from Master Pageniaher2009-06-06T00:49:26Z2009-06-06T01:34:48Z
<p>In ASP.NET, I would like to disable session state from master page, however @Master directive doesn't have EnableSessionState attribute as @Page does. Is there any workaround?</p>
http://stackoverflow.com/questions/937600/routing-vs-url-rewrite-iis7-performance1Routing vs Url Rewrite (IIS7) Performanceniaher2009-06-02T01:39:50Z2009-06-05T19:51:42Z
<p>I was wondering is there any difference in terms of performance between the two approaches? Any good articles on this?</p>
http://stackoverflow.com/questions/954889/how-do-i-know-which-attributes-are-stored-in-controlstate-and-which-in-viewstate0How do I know which attributes are stored in ControlState and which in ViewState?niaher2009-06-05T08:50:18Z2009-06-05T14:46:51Z
<p>In asp.net, how can I know which attributes are stored in ControlState and which in ViewState? Are there any official documents on this?</p>
http://stackoverflow.com/questions/935340/accessing-page-class-from-another-page-class0Accessing Page Class From Another Page Classniaher2009-06-01T15:35:27Z2009-06-02T09:16:37Z
<p>How do I access a page class from another class. For example I have:</p>
<pre><code>public partial class MyPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{ }
}
</code></pre>
<p>Why can I not access it from another class in App_Code folder?</p>
<pre><code>public class MyClass
{
public MyClass() {}
public void DoSomething(object o)
{
// The following line won't compile.
MyPage page = o as MyPage;
}
}
</code></pre>
<p><hr /></p>
<p>I just figured it out (thanks to Fujiy) that for some reason this is the case with website project, but is not a problem with web application project in VS. If anyone has any clues as to why, please share your thoughts. Thank you :)</p>
http://stackoverflow.com/questions/934246/substitution-control-and-cache-location0Substitution Control and Cache Locationniaher2009-06-01T10:19:19Z2009-06-01T10:30:48Z
<p>If I use Substitution control in asp.net page, and also add the following directive to the page:</p>
<pre><code><%@ OutputCache Duration="7200" VaryByParam="None" Location="Any" %>
</code></pre>
<p>Would the location attribute be ignored, since using Substitution control on a page makes the page cacheable only on the server?</p>
http://stackoverflow.com/questions/915771/asp-net-url-rewriting-vs-routing2ASP.NET - Url Rewriting vs. Routingniaher2009-05-27T13:41:11Z2009-05-28T23:49:13Z
<p>Hi, I am making a making a new asp.net web forms site and would like to beautify my urls - I want to accept a url like this one "www.mysite.com/1-2,3" and turn it one like this "www.mysite.com/page.aspx?a=1&b=2&c=3". Which option is best for this task - IIS7 Url Rewriting or Routing in terms of <strong>performance</strong> and <strong>ease of maintenance</strong>. Btw I am planning to use medium trust shared hosting IIS7, maybe 6.</p>
<p>In the past I used PHP's mod_rewrite, which I was quite happy with, however now this whole site is being translated to ASP.NET, and I don't know which option to pick.</p>
<p>PS - I have already read <a href="http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/" rel="nofollow">this</a> and <a href="http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing">this</a>, however didn't find it clear enough for my problem.</p>
http://stackoverflow.com/questions/920402/sending-email-via-iis-smtp-to-external-address/921638#9216380Answer by niaher for Sending Email via IIS SMTP to external addressniaher2009-05-28T15:52:02Z2009-05-28T15:52:02Z<p>I am not sure if I remember right, but I once had a problem where I couldn't send an email because my From address was not what my hosting allowed. Basically I ended up being able to only set ReplyTo and leaving From undefined (the smtp server will define it by itself). Try it, it might work.</p>
http://stackoverflow.com/questions/920533/how-to-get-list-of-user-profile-from-membership-provider/921539#9215390Answer by niaher for How to Get List of User/Profile from Membership Provider?niaher2009-05-28T15:36:57Z2009-05-28T15:36:57Z<p>Membership.GetAllUsers() returns a MembershipUserCollection, which you can use to access individual MembershipUser. Example:</p>
<pre><code>MembershipUserCollection users = Membership.GetAllUsers();
string email = users["some_username"].Email;
</code></pre>
<p>You can also retrieve ProfileInfo in the similar way:</p>
<pre><code>ProfileInfoCollection profiles = ProfileManager.GetAllProfiles(ProfileAuthenticationOption.All);
DateTime lastActivity = profiles["some_username"].LastActivityDate;
</code></pre>
<p>However there are no FirstName and LastName properties by default, unless you manually specified them in your profile provider.</p>
<p>Check out <a href="http://msdn.microsoft.com/en-us/library/system.web.security.membershipuser.aspx" rel="nofollow">MembershipUser class</a> and <a href="http://msdn.microsoft.com/en-us/library/system.web.profile.profileinfo.aspx" rel="nofollow">ProfileInfo class</a> for more details. You might also wanna check out <a href="http://msdn.microsoft.com/en-us/library/system.web.profile.sqlprofileprovider.aspx" rel="nofollow">SqlProfileProvider class</a> as an example of profile provider, unless you already have implemented one.</p>
http://stackoverflow.com/questions/919696/is-there-conditional-caching-in-asp-net0Is there conditional caching in ASP.NET?niaher2009-05-28T07:54:18Z2009-05-28T10:31:33Z
<p>Is there a built-in asp.net way to conditionally serve pages, for example I want the following logic:</p>
<blockquote>
<p>If there is a session data I generate
a page, if there is no session data I
serve the cached page.</p>
</blockquote>
<p>I am only interested in knowing about a built-in asp.net mechanism for this. If it does not exist I am probably going to simply cache my page manually and decide whether to serve it or not for each request, based on the session data availability.</p>
http://stackoverflow.com/questions/916121/searching-a-gridview-with-a-datatable-datasource/916236#9162362Answer by niaher for Searching A Gridview With A DataTable Datasourceniaher2009-05-27T14:57:39Z2009-05-28T09:54:08Z<p>Normally you would search your data source directly, so in your case since TheWebServiceSearch.AddressDataTable is a DataTable, you can do the following:</p>
<pre><code>DataTable data = TheWebServiceSearch.AddressDataTable;
DataRow[] foundRows = data.Select("city = 'NY'", "zip ASC");
</code></pre>
<p>You can check out the complete list of DataTable.Select overloads <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable.select.aspx" rel="nofollow">here</a></p>
<p><hr /></p>
<p>Oh okay, now I see what you need. I thought you wanted something else. Anyways for your purpose you should use DataView object (which is also bindable). Here's an example:</p>
<pre><code>Dim StreetDataTable As DataTable = Session("StreetData")
Dim Name As String = StreetDataTable.Columns(0).ColumnName
StreetDataTable.DefaultView.RowFilter = "street LIKE '%" & Me.txtStreet.Text & "%'"
StreetDataTable.DefaultView.Sort = "Street ASC"
Me.GvStreets.DataSource = StreetDataTable.DefaultView
Me.GvStreets.DataBind()
</code></pre>
<p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/system.data.dataview.aspx" rel="nofollow">complete specification of DataView</a>.</p>
http://stackoverflow.com/questions/919216/sqldatareader-column-ordinals0SqlDataReader Column Ordinalsniaher2009-05-28T04:49:03Z2009-05-28T05:09:45Z
<p>Suppose I am calling a query "SELECT name, city, country FROM People". Once I execute my SqlDataReader do columns come in the same order as in my sql query?</p>
<p>In other words can I rely that the following code will always work correctly:</p>
<pre><code>SqlConnection connection = new SqlConnection(MyConnectionString);
SqlCommand command = new SqlCommand();
command.Connection = connection;
command.CommandText = "SELECT [name], [city], [country] WHERE [id] = @id";
try
{
connection.Open();
SqlDataReader reader = command.ExecuteReader(System.Data.CommandBehavior.SingleRow);
if (reader.Read())
{
// Read values.
name = reader[0].ToString();
city = reader[1].ToString();
country = reader[2].ToString();
}
}
catch (Exception)
{
throw;
}
finally
{
connection.Close();
}
</code></pre>
<p>Also how much performance do I lose if I use column names instead of ordinals (reader["name"])?</p>
<p>Are there any official microsoft documents describing the behavior of column ordering in SqlDataReader?</p>
http://stackoverflow.com/questions/918745/can-i-do-this-with-asp-net-routing0Can I do this with ASP.NET Routing?niaher2009-05-28T01:15:08Z2009-05-28T01:19:26Z
<p>I want to accept a url like this one "www.mysite.com/1-2,3" and turn it one like this "www.mysite.com/page.aspx?a=1&b=2&c=3". Basically I want to know if it's possible to lose .aspx portion, using routing?</p>
http://stackoverflow.com/questions/891918/grid-view-vs-list-view/906356#9063562Answer by niaher for Grid View vs List Viewniaher2009-05-25T11:18:51Z2009-05-27T06:40:50Z<p>GridView supports:</p>
<ul>
<li>sorting by click</li>
<li>paging</li>
<li>editing</li>
<li>selection</li>
<li>sorting by click</li>
<li>template-based layout (rendered withing )</li>
</ul>
<p>ListView supports:</p>
<ul>
<li>List item</li>
<li>paging (need to use DataPager)</li>
<li>editing</li>
<li>selection</li>
<li>sorting by click (need to create an event handler manually)</li>
<li>template-based layout (rendered as you want it + provides more templates, e.g. - GroupTemplate)</li>
</ul>
<p><strong>The reason to use ListView would be if you need some special layout</strong>, for example, to create a table that places more than one item in the same row, or to break free from table-based rendering altogether) - which is not possible with GridView.</p>
<p><strong>Using GridView</strong> on the other hand <strong>is easier and faster</strong>, so unless you need special layout to display your data, use GridView.</p>
http://stackoverflow.com/questions/1737884/how-to-block-returning-a-resultset-from-stored-procedure/1737918#1737918Comment by niaher on How to block returning a resultset from stored procedure?niaher2009-11-16T01:13:12Z2009-11-16T01:13:12ZI like the second option because it is a generic way to not return SELECT statement's resultset. In general table variable seems to be the right way to go about this problem.http://stackoverflow.com/questions/1737884/how-to-block-returning-a-resultset-from-stored-procedureComment by niaher on How to block returning a resultset from stored procedure?niaher2009-11-15T16:27:49Z2009-11-15T16:27:49ZActually I can do away with SqlDataReader by using SqlDataReader.NextResult(), however I'd like to eliminate unnecessary network traffic.http://stackoverflow.com/questions/1215615/is-there-a-way-to-set-charset-using-the-web-config-in-asp-netComment by niaher on Is there a way to set charset using the web.config in asp.net?niaher2009-08-01T13:30:35Z2009-08-01T13:30:35ZGood question. I do agree it would be nice to have this kind of feature.http://stackoverflow.com/questions/642848/performance-questions-for-sql-cache-dependencyComment by niaher on Performance questions for SQL Cache Dependencyniaher2009-07-23T23:46:27Z2009-07-23T23:46:27ZHave you found any answers? I would also love to know an answer to this.http://stackoverflow.com/questions/1162791/jquery-query-string-traversal/1163971#1163971Comment by niaher on JQuery query string traversalniaher2009-07-22T14:53:22Z2009-07-22T14:53:22ZPerfect. Thanks.http://stackoverflow.com/questions/1162791/jquery-query-string-traversal/1162797#1162797Comment by niaher on JQuery query string traversalniaher2009-07-22T14:52:48Z2009-07-22T14:52:48ZWhile this is what I need, I think plugin is an overkill for such a simple problem.http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178439#178439Comment by niaher on Form Elements in ASP.NET Master Pages and Content Pagesniaher2009-07-14T00:02:39Z2009-07-14T00:02:39ZSo are you suggesting to wrap the whole page inside a <form runat="server">? Of course it will solve the problem but, isn't it a bad practice?http://stackoverflow.com/questions/1066835/how-do-you-center-a-textbox-inside-an-asp-panelComment by niaher on How do you center a textbox inside an ASP panel?niaher2009-07-01T01:05:14Z2009-07-01T01:05:14ZDo you know the height of your panel?http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/74129#74129Comment by niaher on Paging SQL Server 2005 Resultsniaher2009-06-29T01:15:57Z2009-06-29T01:15:57ZThis is what you would do in Sql Server 2000, but 2005 version has a better solution using ROW_NUMBER function.http://stackoverflow.com/questions/1010148/table-with-a-lot-of-columns/1010167#1010167Comment by niaher on Table with a lot of columnsniaher2009-06-18T00:35:27Z2009-06-18T00:35:27ZI haven't thought about it from this perspective and I totally agree with your argument. However in my case I will always only retrieve a single row specified by primary key.http://stackoverflow.com/questions/1010148/table-with-a-lot-of-columns/1010160#1010160Comment by niaher on Table with a lot of columnsniaher2009-06-18T00:28:48Z2009-06-18T00:28:48ZNope. I do not have such columns. Third Normal Form is respected.http://stackoverflow.com/questions/1010148/table-with-a-lot-of-columnsComment by niaher on Table with a lot of columnsniaher2009-06-18T00:26:17Z2009-06-18T00:26:17ZYes there are 3 logical groups: prefereces, account details, profile details.http://stackoverflow.com/questions/995589/set-nocount-off-or-return-rowcount/995609#995609Comment by niaher on SET NOCOUNT OFF or RETURN @@ROWCOUNT?niaher2009-06-15T11:52:57Z2009-06-15T11:52:57ZI don't see anything mentioned about SET NOCOUNT inside the SqlCommand documentation. Are you sure that there's the same problem as with DataAdapters?http://stackoverflow.com/questions/944431/asp-net-routing-and-regular-expressions/961127#961127Comment by niaher on ASP.NET Routing and Regular Expressionsniaher2009-06-08T01:59:11Z2009-06-08T01:59:11ZYep it seems to be not possible to create the rule with a single route, due to the way Regex is parsed. I worked around the problem by having two routes.http://stackoverflow.com/questions/958687/disable-session-from-master-page/958729#958729Comment by niaher on Disable Session from Master Pageniaher2009-06-06T01:21:20Z2009-06-06T01:21:20ZThank you for your answer. Actually I don't want to completely disable session for the whole site. But just for some pages, which don't need it, as it will improve the performance. Btw I am using InProc mode; is disabling session for some pages that don't need it, going to better the performance? I am sure it will effect StateServer & SqlServer, but what about InProc?