thanks Shreekar.
Abbas_here
Posts
-
Gridview sorting -
Gridview sortingHi Manas, Thanks for your suggestion on this actually i tried it before but i didn't succeed at that time as the most of comments suggest to add commond timeout attribute in connection string, for now i again implement it at this time no error occured, as i say it was randomly occur so hoping for best. Thanks for help Abbas
-
Gridview sortingHi Freanids, I am using a Gridview in my project but when i implement sorting on columns its giving following error randomly, Error is bellow:
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Kindly help me on this issue, how i resolve it. Thanks in advnace Arsad
-
IIS cache issueHi Friends, I am facing an issue with my live server where our website is hosted, when i change some content it's reflecting on localhost and test server but not on the live server, either we remove our home page form live but it still shown on live, but if we remove css it's reflecting. Script: Asp.Net2.0 Web server: iis6.0 kindly help, we have done "enable content expiration" to "Expire immediately" in web server website property. Thanks iin advanced, Abbas
-
QueyString problem in IE6Solve by string.replace(IndexOf)
-
QueyString problem in IE6Hi Friends.. I am using Asp.Net c# one of my project, there i am using QueryString to pass value from one page to another page as (www.xyz.com?a=old#10),
value=Request.QueryString["prd"]
the problem is that IE6 taken value=old#10 where is all browser taken value=old kindly help me i need only old . -
GridView Image buttonhi Abhi thanks for answer, actually i was using image path according function returns value, but now we using RowCreated event thats working fine. Thanks,
-
GridView Image buttonhi freds.. I am facing an issue in gridview control(asp.Net,c#), see below code panel
<asp:TemplateField HeaderText="Action">
<ItemTemplate><asp:ImageButton ID="imgLiveTest" CommandName="<%#DataBinder.Eval(Container.DataItem,"type")%>" ImageUrl='<%# GetImageTestLive(DataBinder.Eval(Container.DataItem,"liveServer")) %>' OnClick="imgLiveTest\_click" runat="server" /> <asp:ImageButton ID="Edit" CommandName="<%#DataBinder.Eval(Container.DataItem,"type")%>" OnClick="Edit\_click" ImageUrl="images/edit.gif" runat="server" /> <asp:ImageButton ID="Delete" CommandName="<%#DataBinder.Eval(Container.DataItem,"type")%>" OnClick="delete\_click" ImageUrl="images/cancel.gif" runat="server" /> </ItemTemplate> </asp:TemplateField>
But I am not able to to see image in gridview, where as path is correct, and in source code ImageButton not renderd as html code they are same as aspx. Thanks, Abbas
-
Gridview Sorting with Up and Down IconsThanks,
-
Gridview Sorting with Up and Down IconsHi.. We need to create a grid view control with multi column sorting with Up and Down Icons in header, can you give me a reference article for it. Thanks, Abbas
-
database genrated Menu web controlHi freind, I want to create dynamic side bar in our product web page by web menu control, it will be dynamic (when we click on top menu a queryString will pass and database will give related products which we want to as side bar in page) , ASP.NET 2.0, C#. Thanks in advance, Abbas
-
Comparing file in asp.net, c#Hi friends.. I have some task in c# that is, there are two database generated file x1, and x2 (without ext), I need to compare both, and if x2 have some extra content its need to copy on x1. Thanks... Abbas
-
Reading JSON Filethanks....
-
Reading JSON Filethanks friend ....
-
Reading JSON FileThanks Rakesh ..it's give me idea...
-
Reading JSON FileHi friends.. I have a URL who gives a JSON data, now i want some value from that JSON file, so how I read read JSON file and take require data from it(using asp.net 2.0 and C#). Thanks, Abbas
-
HTML Control in asp.net, C#thanks.
-
HTML Control in asp.net, C#thanks.... it's working now with txt.value
-
HTML Control in asp.net, C#Hi friends, I am trying to use a form with html control in asp.net2.0 and c#, how can we use those control (html control) in our c# code for inserting records in database... Please suggest me... Thanks, Abbas
-
What is the difference between Managed and Unmanaged Code in .NET?"Managed Code" is what Visual Basic .NET and C# compilers create.CLR able to understand it. It compiles to Intermediate Language (IL), not to machine code that could run directly on your computer. Where as "Unmanaged code" is what you use to make before Visual Studio .NET 2002 was released. Visual Basic 6, Visual C++ 6, even that 15-year old C compiler you may still have kicking around on your hard drive all produced unmanaged code. It compiled directly to machine code that ran on the machine where you compiled it.