User Shyju - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:04:12Z http://stackoverflow.com/feeds/user/40521 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1467369/invoking-a-php-script-from-a-mysql-trigger 3 Invoking a PHP script from a mysql trigger Shyju 2009-09-23T17:06:02Z 2009-12-04T04:23:57Z <p>Is there anyway invoke a PHP page / function when a record being inserted in to the mysql db table. We dont have control over the record insertion procedure.Is there some thing called trigger which can call a PHP script back ?</p> http://stackoverflow.com/questions/949044/asp-netintegrating-many-pages-to-one-using-jquery-ui-dialog 0 ASP.NET:Integrating many pages to one using jQuery UI dialog Shyju 2009-06-04T07:19:38Z 2009-12-03T09:00:11Z <p>I have a four ASP.NET pages,Page 1.aspx,Page2.aspx,page3.aspx and page4.aspx.Normally the user will come to Page1 and then enter his data in the form elements.On clicking on the Go button Page 2 will come and so on up to page 4.Now i want to Integrate all of these items to A single page using jQuery LightBox/UI dialog modal popup.In my all pages i have server side code to do some Business logic.So I tried to Put the contents of page 2 in a panel and put it in the UI modal dialog and placed in page 1 and invoke the UI dialog from page 1 's button click.But my problem is I am not sure when i click on the button of the panel which is placed in the UI dialog, will trigger the server side code .I had some problems when i tried it earlier</p> <p><a href="http://stackoverflow.com/questions/876660/asp-net-with-jqueryui-text-box-value-is-getting-as-null-in-button-click-event">http://stackoverflow.com/questions/876660/asp-net-with-jqueryui-text-box-value-is-getting-as-null-in-button-click-event</a></p> <p>Please advice</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1346829/irisesimulating-orkut-prototype-how-to-link-to-friends-page-from-home-page 0 iRise:Simulating Orkut prototype.How to link to Friend's page from home page ? Shyju 2009-08-28T12:56:54Z 2009-12-02T14:00:16Z <p>I am trying to simulate the prototype of orkut in iRise to learn this tool, I have 2 datasheets USERS and FRINEDS.USer has column USERNAME,FIRSTNAME,LASTNAME and FRIENDS HAS columns as USERNAME,USERNAME_OF_FRIEND.Now i have populated the list of friends of the current logged in user.NOw when i click any name of the friends, it should show me to the frieds page. How to do this ?</p> http://stackoverflow.com/questions/1648392/javascript-get-a-dateobject-six-months-previous-from-another-date-object 0 JavaScript: Get a dateobject (Six months previous) from another date object Shyju 2009-10-30T06:59:25Z 2009-11-30T19:52:11Z <p>In JavaScript, how can I create a dateobject which is less than n number of months from another date object. I am looking for something like DateAdd()</p> <pre><code> Ex : var objCurrentDate = new Date(); </code></pre> <p>Now using objCurrentDate, how can I create a date object which is having a date which is six month older that todays date/objCurrentDate?</p> http://stackoverflow.com/questions/1815406/c-integer-value-being-returned-as-hexadecimal-in-vs-2008 0 C#: Integer value being returned as hexadecimal in VS 2008 Shyju 2009-11-29T12:34:24Z 2009-11-29T12:37:11Z <p>I have a c# code snippets where i am creating a list of my custom class objects.When i am taking the count of that,its showing me a hexadecimal value in the quickwatch window.</p> <p><img src="http://img509.imageshack.us/img509/434/morrisissueinvs2008.jpg" alt="alt text"></p> <p>But if i type listItemCount.ToStrin(), i am getting the proper value as output (ie : 50061)</p> <p>Any idea how to correct this ?</p> http://stackoverflow.com/questions/1737393/in-c-how-can-i-read-a-connection-string-stored-in-my-web-config-file-connectio 1 In C# , how can I read a connection string stored in my web.config file connection string? Shyju 2009-11-15T12:13:38Z 2009-11-27T20:13:20Z <p>In C# class library, how can I read a connection string stored in my web.config file connection string tag? As in:</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="CLessConStringLocal" connectionString="server=localhost;database=myDb;uid=sa;pwd=mypassword;"/&gt; &lt;/connectionStrings&gt; </code></pre> http://stackoverflow.com/questions/914530/jquery-chaning-events-code-correction 0 jQuery: Chaning Events- code correction Shyju 2009-05-27T08:10:33Z 2009-11-27T19:56:07Z <p>Hai Techies,</p> <p>Can any one tell me how can i replace the slideup function with fadeout('slow') for the below code</p> <pre><code> div.slideUp(function() { div.load("GetResults.aspx?mode=bymanu&amp;mid="+manuId, { symbol: $("#txtSymbol" ).val() }, function() { $(this).slideDown(); }); </code></pre> <p>Instead of slideUp,I want to use the FadeOut function with a speed .How can i chain up the events ?</p> <p>I want to replace the SlideDown also with FadeIn('slow')</p> <p>Thanks in advance...</p> http://stackoverflow.com/questions/1624660/get-selected-date-in-jqueryui-datepicker-inline-mode 0 Get selected date in jqueryui datepicker inline mode Shyju 2009-10-26T13:02:41Z 2009-11-27T16:07:23Z <p>i am trying to use jqueryui datepicker.I want to use the inline mode.Now i want to know how can i get the selected date when user selects a date.Where to get and how to get ? Please advice</p> http://stackoverflow.com/questions/1806970/how-to-upload-pdf-file-into-my-own-server/1807008#1807008 0 Answer by Shyju for How to upload pdf file into my own server? Shyju 2009-11-27T05:58:50Z 2009-11-27T05:58:50Z <p>You can use ASP.NET file upload control which will handle this.You can mention where in your server you want to store it</p> http://stackoverflow.com/questions/1699483/excel-reading-in-asp-net-data-not-being-read-if-column-has-different-data-forma 0 Excel reading in ASP.NET : Data not being read if column has different data formats Shyju 2009-11-09T06:59:54Z 2009-11-26T10:34:20Z <p>I have an asp.net C# application where i am reading the contents of a spreadsheet using OLEDBConnection. I am using the below line of code to read from the excel spreadsheet.</p> <pre><code> OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fullFilePath + ";Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'"); </code></pre> <p>One of my column has data in various formats like strings,numbers,date etc in various rows.When running this ,When the data format is different,its not reading that value fromthe excel file. I searched in net a lot and found that we need to mention IMEX proprety in connection string.I added that,but no positive response !.</p> <p>After surfine a lot, ifound that Any built-in Excel driver will query the first 8 rows of a sheet and then make a determination (without your permission or knowledge) as to what type of column it is, thereby ignoring anything that doesn’t meet this data type later in the sheet.</p> <p><a href="http://www.mattjwilson.com/blog/2009/02/13/microsoft-excel-drivers-and-imex/" rel="nofollow">http://www.mattjwilson.com/blog/2009/02/13/microsoft-excel-drivers-and-imex/</a></p> <p>Is there anyway to get rid of this problem ?</p> http://stackoverflow.com/questions/1762736/itextsharp-pdfptable-overlapping-with-other-content 0 iTextSharp : pdfPTable overlapping with other content Shyju 2009-11-19T11:43:20Z 2009-11-25T14:19:38Z <p>I am using iTextsharp to generate a PDF document from C# application. I am having a PdfPTable to display some tabular data. My problem in the table is overlapping with the other paragraph .Is there anyway i can place the table on a particular position ? then below is my code</p> <pre><code> PdfPTable objTable = new PdfPTable(6); objTable.DefaultCell.Padding=1; objTable.DefaultCell.BorderColor = new Color(123, 123, 163); objTable.DefaultCell.Padding = 1; float[] headerwidths = { 12,18,25,20,6,17 }; // percentage objTable.SetWidths(headerwidths); objTable.WidthPercentage = 80; // percentage System.Drawing.Color objColor=System.Drawing.ColorTranslator.FromHtml("#EEEEEE"); PdfPCell objCell0 = new PdfPCell(new Phrase("SlNo")); PdfPCell objCell1 = new PdfPCell(new Phrase("Date")); PdfPCell objCell2 = new PdfPCell(new Phrase("Expense name")); PdfPCell objCell3 = new PdfPCell(new Phrase("Budgeted value")); PdfPCell objCell4 = new PdfPCell(new Phrase("Units")); PdfPCell objCell5 = new PdfPCell(new Phrase("Total submitted")); //Add child rows with data List&lt;SubmitExpenseItem&gt; objItemList=objExpense.ExpenseChildItems; foreach (SubmitExpenseItem expChildItem in objItemList) { slno++; objTable.AddCell(new PdfPCell(new Phrase(slno.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.SubmitDate.ToShortDateString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.ExpenseName))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.BudgetValue.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.Units.ToString()))); objTable.AddCell(new PdfPCell(new Phrase(expChildItem.ActualValue.ToString()))); } objChildInfoPara.Add(objTable); objDoc.Add(objMasterDetailsPara);//First para objDoc.Add(objChildInfoPara); </code></pre> <p>Now my second para (objChildInfoPara) is overlapping with the first one</p> <p>Can anyone tell me how to get rid of this problem ? </p> http://stackoverflow.com/questions/1790445/asp-net-appcode-class-files-not-getting-updated-after-modification 0 ASP.NET : App_Code Class files not getting updated after modification Shyju 2009-11-24T14:32:14Z 2009-11-24T14:41:21Z <p>I have an ASP.NET web site where i am having App_code folder in which i put my class files (Business objects). Its running fine.But when i made some changes in the class (Added few proprties /Methods) and uploaded to the webserver (in production) its not getting affected in the live site.But this works pretty good when runs in local(so there is no code error).Is this because the DLLS are dynamically generated in the live server and not getting updated ?</p> http://stackoverflow.com/questions/1265563/cookie-blocked-popup-in-ie 0 Cookie Blocked popup in IE Shyju 2009-08-12T11:23:20Z 2009-11-24T08:22:47Z <p>I have a website hosted in a server named msa_inst_server. In my login page ,after user enter the username,i will check whether cookies are available or not,But when i access the login page in IE 6.0 in one machine in the local network,I am getting a pop up saying that</p> <p><img src="http://img23.imageshack.us/img23/4288/cookieerrorinie.jpg" alt="alt text" /></p> <p>I have added the site to trusted zone,changed the settings to allow all cookies.But no way to get rid of this problem. Any thoughts.... ?</p> <p>Does the underscore in the server name matters ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1030278/c-gdi-image-cropping 1 C# : GDI+ Image cropping Shyju 2009-06-23T01:55:04Z 2009-11-21T17:43:24Z <p>I have an image .I want to crop 10 px from left and 10px from right of the image.I used the below code to do so</p> <pre><code> string oldImagePath="D:\\RD\\dotnet\\Images\\photo1.jpg"; Bitmap myOriginalImage = (Bitmap)Bitmap.FromFile(oldImagePath); int newWidth = myOriginalImage.Width; int newHeight = myOriginalImage.Height; Rectangle cropArea = new Rectangle(10,0, newWidth-10, newHeight); Bitmap target = new Bitmap(cropArea.Width, cropArea.Height); using (Graphics g = Graphics.FromImage(target)) { g.DrawImage(myOriginalImage,cropArea); } target.Save("D:\\RD\\dotnet\\Images\\test.jpg"); </code></pre> <p>But this is not giving me the results which i expect. This outputs an image which has 10 px cropped from the right and a resized image.Instead of cropiing it is resizing the width i think.So the image is shrinked(by width). Can any one correct me ? Thanks in advance</p> http://stackoverflow.com/questions/888000/asp-net-jquery-ui-dialog-showing-in-page-for-1-2-seconds 1 ASP.NET,jQuery UI Dialog showing in page for 1-2 seconds Shyju 2009-05-20T13:46:16Z 2009-11-21T14:12:30Z <p>I have an ASP.NET page where i will check whether the user has logged in to the system (by checking the session value) in the page load and if not logged in,it will show a jQueryUI dialog for login.</p> <p>My ASPX page contains these script in the head tag</p> <pre><code>&lt;style type="text/css"&gt; body { font-size: 62.5%; } label, input { display:block; } input.text { margin-bottom:12px; width:95%; padding: .4em; } fieldset { padding:0; border:0; margin-top:25px; } h1 { font-size: 1.2em; margin: .6em 0; } div#users-contain { width: 350px; margin: 20px 0; } div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; } div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; } .ui-button { outline: 0; margin:0; padding: .4em 1em .5em; text-decoration:none; !important; cursor:pointer; position: relative; text-align: center; } .ui-dialog .ui-state-highlight, .ui-dialog .ui-state-error { padding: .3em; } &lt;/style&gt; &lt;script type="text/javascript"&gt; $(function() { var name = $("#name"), email = $("#email"), password = $("#password"), allFields = $([]).add(name).add(email).add(password), tips = $("#validateTips"); function updateTips(t) { tips.text(t).effect("highlight",{},1500); } function checkRegexp(o,regexp,n) { if ( !( regexp.test( o.val() ) ) ) { o.addClass('ui-state-error'); updateTips(n); return false; } else { return true; } } $("#dialog").dialog({ bgiframe: true, autoOpen: false, height: 250, modal: true, buttons: { Cancel: function() { $(this).dialog('close'); }, NewUser: function() { $(this).dialog('close'); window.location.href="Register.aspx"; }, 'Sign in': function() { var bValid = true; allFields.removeClass('ui-state-error'); bValid=true; isValidationFails=false; if (bValid) { // Go to another page } } } }, close: function() { allFields.val('').removeClass('ui-state-error'); } }); $('#create-user').click(function() { $(this).dialog('close'); window.location.href="Register.aspx" }) .hover( function(){ $(this).addClass("ui-state-hover"); }, function(){ $(this).removeClass("ui-state-hover"); } ).mousedown(function(){ $(this).addClass("ui-state-active"); }) .mouseup(function(){ $(this).removeClass("ui-state-active"); }); //}); var isAuthenticated = $("#isAuthenticated").val(); if (isAuthenticated &amp;&amp; isAuthenticated == "false") { $("#dialog").dialog("open"); } </code></pre> <p>}); </p> <pre><code>&lt;/script&gt; </code></pre> <p>SErver side code (in Page_Load)</p> <pre><code> if (Session["trCustomerId"] != null) { Response.Write("Logged in user"); ClientScript.RegisterHiddenField("isAuthenticated", "true"); } else { ClientScript.RegisterHiddenField("isAuthenticated", "false"); } </code></pre> <p>The program is working fine now . But the problem is when the page is loading,it is showing the UIDialog div for 1-2 seconds in the screen and then disappearing. I dont want to show like this.Can any one tell me how to solve this ? </p> http://stackoverflow.com/questions/1775208/c-how-can-i-build-a-datetime-object-from-a-datetime-present-in-a-string-object 1 C# , How can i build a DateTime object from a datetime present in a string object ? Shyju 2009-11-21T11:20:47Z 2009-11-21T11:25:14Z <p>in C# , How can i build a DateTime object from a datetime present in a string object ( String strDate="11/11/2009")? </p> http://stackoverflow.com/questions/1237832/substring-of-xml-datatype-column-value-in-sql-server-2005 0 Substring of XML datatype column value in SQL server 2005 Shyju 2009-08-06T09:19:10Z 2009-11-21T09:00:02Z <p>I have a table in a database in SQL server 2005.one of the column is of XML datatype.the content of the columns is like </p> <pre><code> &lt;info&gt;This is a sample information .Anyone can help &lt;/info&gt; </code></pre> <p>Now i want to query the data in the table with a part of the column value as response. ie : My desired output is "This is a sample "</p> <p>What should be the query ? Substring is throwing an error </p> http://stackoverflow.com/questions/1769358/use-of-using-keyword-in-c/1769420#1769420 0 Answer by Shyju for use of "using" keyword in c# Shyju 2009-11-20T09:43:46Z 2009-11-20T09:43:46Z <p>using keyword can be used to import(Associate) a namspace or library with our program.so that we can use function available in that libraries in our program. Its some thing like a reference</p> <p>Ex : using System.IO</p> <p>This means We are going to use some functions present in that library </p> <p>You can write your own library and import it using the using statement. Ex : </p> <pre><code>namespace MyProject.MyNamspace { public class MyCustomClass { public static string MyFunctionToSmile() { return "He he he heeee"; } } </code></pre> <p>}</p> <p>and in ur c# page, use this</p> <pre><code>using MyProject.MyNamspace public class MyClass { protected void Page_Load(object sender, EventArgs e) { Response.Write(MyCustomClass.MyFunctionToSmile()); } } </code></pre> <p>Cool...!</p> http://stackoverflow.com/questions/1769255/how-to-create-the-effect-like-this-page/1769339#1769339 0 Answer by Shyju for How to create the effect like this page? Shyju 2009-11-20T09:31:04Z 2009-11-20T09:31:04Z <p>Simply jQuery </p> <p>With one line of code you can do this.</p> <p>www.jquery.com</p> http://stackoverflow.com/questions/1762842/is-the-itextsharp-dll-free-to-use-and-redistribute-with-my-web-application-projec 0 Is the iTextSharp DLL free to use and redistribute with my web application project? Shyju 2009-11-19T12:05:51Z 2009-11-20T05:07:31Z <p>Is the <a href="http://en.wikipedia.org/wiki/IText" rel="nofollow">iTextSharp</a> DLL free to use and redistribute with my web application project which i will be selling?</p> http://stackoverflow.com/questions/959437/jqueryproblem-in-chaining-the-events 0 jQuery:Problem in Chaining the events. Shyju 2009-06-06T10:36:04Z 2009-11-19T22:00:02Z <p>I have the following javascript function which will load data from a server page to the div This is working fine with the FadeIn/FadeOut effects</p> <p>function ShowModels(manuId) {</p> <pre><code> var div = $("#rightcol"); div.fadeOut('slow',function() { div.load("../Lib/handlers/ModelLookup.aspx?mode=bymanu&amp;mid="+manuId, { symbol: $("#txtSymbol" ).val() }, function() { $(this).fadeIn(); }); }); </code></pre> <p>}</p> <p>Now i want to Show a Loading Message till the div loads the contents from the server page</p> <p>I tried this.But its not working.Can any one help me to debug this ? Thanks in advance</p> <pre><code>function ShowModels(manuId) { var div = $("#rightcol"); var strLoadingMsg="&lt;img src='loading.gif'/&gt;&lt;h3&gt;Loading...&lt;/h3&gt;"; div.fadeOut('slow',function() { div.load(strLoadingMsg,function(){ div.load("../Lib/handlers/ModelLookup.aspx?mode=bymanu&amp;mid="+manuId, { symbol: $("#txtSymbol" ).val() }, function() { $(this).fadeIn(); }); }); }); </code></pre> <p>}</p> <p>My ultimate requirement is to FadeOut the current content.Show the Loading message.Show the Data coming from server with a FadeIn effect</p> http://stackoverflow.com/questions/1762311/in-c-how-can-i-create-a-system-drawing-color-object-using-a-hex-value 1 In C# , How can i create a System.Drawing.Color object using a hex value ? Shyju 2009-11-19T10:27:44Z 2009-11-19T10:49:35Z <p>In C# , How can i create a System.Drawing.Color object using a value like this #FFFFF,#FGFG01 etc... </p> http://stackoverflow.com/questions/1753556/web-config-showing-detailed-error-information-from-subdirectory 1 Web.config : showing detailed error information from subdirectory Shyju 2009-11-18T04:07:33Z 2009-11-18T04:19:45Z <p>I have an asp.net web application .I have a web.config in the root which will take care about the application related settings. as per my web.config,the site will not show any error messages to the end user,instead it will show a friendly error page. I have few sub direcorties in the root .Can i show error information in screen for files belongs to that sub directory by putting another web.config in the subdirectory ? What should be the values in web.config ?</p> http://stackoverflow.com/questions/617714/running-activex-control-and-maintaining-security 0 Running Activex control and Maintaining security Shyju 2009-03-06T05:02:09Z 2009-11-18T02:00:05Z <p>Hi Techies,</p> <p>In my a web application, I have a part to invoke an activex control .The Activex control is available in all the client PCs who are accessing my web application from web server. But When trying to run this ActiveX control from the browser in client machine (using Wshell), It was not getting invoked since "<strong>Run Activex Controls and Pluggins</strong>" are disabled in my browser. So I changed the browser settings to <strong>enable</strong> mode and Then the Activex control gave me the expected output. I afraid that this change in browser settings would allow any other website to harm my system. How could I get rid of this problem? Any thoughts? Thanks in advance</p> http://stackoverflow.com/questions/1735133/asp-file-download-of-asp-page-comes-instead-of-executing-it 1 ASP : File download of ASP page comes instead of executing it Shyju 2009-11-14T18:28:03Z 2009-11-17T21:44:23Z <p>I have an ASP page which will create a record set from an SQL query and create an excel page using that by using Response.ContentType = "application/vnd.ms-excel" property being set.</p> <p>When executing the file,it will show a save dialog for an excel file (whatever filename i have mentioned in Response.AddHeader) as</p> <pre><code>Response.AddHeader "Content-Disposition", "attachment; filename=" &amp; strFileName </code></pre> <p>This works well in local .But when running from the server (i checked only in IE ),ITs showing me a dialog box to "OPen" "Save " the ASP file itself, IF i give Save , Its showing an error message like "Could not download ..."</p> <p>Any idea how to solve this ?</p> http://stackoverflow.com/questions/1747688/asp-net-why-event-is-not-being-added-to-codebehind 0 ASP.NET : Why Event is not being added to codebehind ? Shyju 2009-11-17T09:46:53Z 2009-11-17T10:05:55Z <p>I have a ASP.NET web page developed in VS 2008 with the below Page directive in the aspx page</p> <p>&lt;%@ Page Language="C#" CodeBehind="SupplierAnalysisReport.aspx.cs" %></p> <p>I placed a asp.net button control in my page and double clicked on it to write an event.It is showing the event (method) in the aspx page itself. Why it is not getting added to the aspx.cs file ?</p> <p>I have removed the Inherits attribute from the page since i want to deploy this to an environment with aspx files and aspx.cs file. (NOT DLL'S)</p> http://stackoverflow.com/questions/1747545/vs-2008-how-to-publish-with-out-dlls 0 VS 2008 : How to publish with out DLLs ? Shyju 2009-11-17T09:17:40Z 2009-11-17T09:43:30Z <p>I have developed a web application in Visual Studio 2008 and want to publish it in to the production server. I see a publish option there.But its producing files with DLL. I dont want to publish only asps files and dll's , Instead i want to use the aspx files and aspx.cs file .This would help other developers to download the code and modify it whenever required od debug it if there is any need.</p> <p>I tried to remove the Inherits attribute from the Page directive in the aspx page, but next time when i want to add an even for a server side control, Its getting added in the aspx page itself,not the code behind</p> http://stackoverflow.com/questions/1740194/css-change-button-appearance-on-hover 0 CSS: Change Button appearance on Hover Shyju 2009-11-16T05:16:04Z 2009-11-16T19:51:39Z <p>I have a button in my web page with class "btnNewL1" . my CSS class is as below</p> <pre><code>.btnNewL1 { background: url(../images/btnbgnew.png); border:1px solid #818181; padding-left:3px; padding-right:3px; font-family:Arial; font-size:12px; padding-top:1px; padding-bottom:1px; } </code></pre> <p>When user place the mouse over the button,i want to chnage the appearance like change of bg image and chnage of border color etc... . I want to do this will CSS itself. and it should be be supported by IE6 IE 7 ,Firefox</p> <p>How to do this ?</p> http://stackoverflow.com/questions/1736563/what-is-the-equivalent-syntax-of-mysql-limit-clause-in-sql-server 3 What is the Equivalent syntax of mysql " LIMIT " clause in SQL Server Shyju 2009-11-15T04:30:26Z 2009-11-15T15:02:21Z <p>What is the Equivalent syntax of MySQL " LIMIT " clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )</p> http://stackoverflow.com/questions/1736698/whats-the-best-method-to-do-paging-in-my-asp-page 0 Whats the best method to do paging in my ASP page Shyju 2009-11-15T05:33:21Z 2009-11-15T13:42:54Z <p>Whats the best method to do paging in my ASP page when displaying a list of items?</p> <p>I knew that there is no equivalent to MySQL's <code>LIMIT</code> clause present in SQL Server, either 2000 or 2005. </p> <p>How can I retrieve some particular records (Records 20 to 30) from the DB? </p> <p>Do i need to fetch all the records from the database and do something in my ASP page to display the required records?</p> http://stackoverflow.com/questions/1762311/in-c-how-can-i-create-a-system-drawing-color-object-using-a-hex-value/1762335#1762335 Comment by Shyju on In C# , How can i create a System.Drawing.Color object using a hex value ? Shyju 2009-11-19T11:50:20Z 2009-11-19T11:50:20Z Yes. HASH is needed. Otherwise it will throw an error http://stackoverflow.com/questions/1753556/web-config-showing-detailed-error-information-from-subdirectory/1753608#1753608 Comment by Shyju on Web.config : showing detailed error information from subdirectory Shyju 2009-11-18T04:25:35Z 2009-11-18T04:25:35Z Thanks dude, It worked http://stackoverflow.com/questions/1736698/whats-the-best-method-to-do-paging-in-my-asp-page/1736738#1736738 Comment by Shyju on Whats the best method to do paging in my ASP page Shyju 2009-11-16T05:58:09Z 2009-11-16T05:58:09Z in SQL server 2000 ,there is no row_number support .So effective server side paging is not possible .Is nt it ? http://stackoverflow.com/questions/1736698/whats-the-best-method-to-do-paging-in-my-asp-page Comment by Shyju on Whats the best method to do paging in my ASP page Shyju 2009-11-16T05:09:16Z 2009-11-16T05:09:16Z Infact it was an ASP.NET page.But i am not using a datagrid kind of control.instead i am using ajax to load contents to a div http://stackoverflow.com/questions/1737166/variable-column Comment by Shyju on variable column Shyju 2009-11-15T10:23:26Z 2009-11-15T10:23:26Z Can u make ur question more specific ? http://stackoverflow.com/questions/1733835/jquery-cloning-a-row-which-has-display-none-style-and-appending-to-the-end-of-t/1733841#1733841 Comment by Shyju on jquery : Cloning a row which has display none style and appending to the end of tbody Shyju 2009-11-14T09:58:58Z 2009-11-14T09:58:58Z That worked .Thanks http://stackoverflow.com/questions/1733563/jquery-how-to-update-function-associted-to-a-div-object/1733566#1733566 Comment by Shyju on jQuery :How to Update function associted to a div object Shyju 2009-11-14T07:13:46Z 2009-11-14T07:13:46Z how can i bind a function name with parameters . I have already a function definition on what to do on the change event http://stackoverflow.com/questions/1705922/whats-happening-when-switching-themes-in-sugar-crm-or-similar-kind-of-application/1706006#1706006 Comment by Shyju on Whats happening when switching themes in Sugar CRM or similar kind of application Shyju 2009-11-10T06:55:08Z 2009-11-10T06:55:08Z How they are persisting the theme then ? http://stackoverflow.com/questions/1665660/ideal-class-name-for-static-class-for-misc-functionalities/1665674#1665674 Comment by Shyju on Ideal class name for static class for misc functionalities Shyju 2009-11-03T07:00:50Z 2009-11-03T07:00:50Z yes .for this example only i mentioned like that,Removing that from the question now http://stackoverflow.com/questions/1630239/sql-between-vs-and Comment by Shyju on SQL : BETWEEN vs <= and >= Shyju 2009-10-27T11:41:36Z 2009-10-27T11:41:36Z Sorry it was a type.I corrected it http://stackoverflow.com/questions/1605231/accessing-value-of-a-non-static-class-in-a-static-class/1605235#1605235 Comment by Shyju on Accessing value of a non static class in a static class Shyju 2009-10-22T06:03:31Z 2009-10-22T06:03:31Z is b is Object of class B ? http://stackoverflow.com/questions/1535753/parent-divs-mouse-out-function-is-called-on-mouseover-of-child-element/1535765#1535765 Comment by Shyju on Parent Div's mouse out function is called on mouseover of child element Shyju 2009-10-08T05:37:20Z 2009-10-08T05:37:20Z how to apply that on my mouse over event? http://stackoverflow.com/questions/1532264/child-divs-disappearing-on-mouseout-of-parent-div/1532287#1532287 Comment by Shyju on Child div's disappearing on mouseout of Parent div Shyju 2009-10-08T01:41:48Z 2009-10-08T01:41:48Z But that was not the problem.I understand that when we go into (mouseover) any element in a DIV ,the mouseover event of parent is getting called http://stackoverflow.com/questions/1327636/irise-tutorials-required/1533299#1533299 Comment by Shyju on iRise : Tutorials required Shyju 2009-10-08T01:37:37Z 2009-10-08T01:37:37Z Yes, Gettting started is very useful. Thanks http://stackoverflow.com/questions/1520073/passing-xml-data-in-jquery-ajax Comment by Shyju on Passing XML data in jQuery ajax Shyju 2009-10-06T17:11:06Z 2009-10-06T17:11:06Z This is all about returning.How about sending to server ?