Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

dilipv 0

@dilipv 0
About
Posts
36
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • changing color of edit row in gridview
    D dilipv 0

    hi mohd imran abdul aziz, You can directly add Back color to selected row of GridView as follows. <asp:GridView SelectedRowStyle-BackColor ="Aqua" ID="Grid" runat="server" ></asp:GridView> For 2nd problem you need to write code in the RowCreated Event of Gridview as follows.. protected void Grid_RowCreated(object sender, GridViewRowEventArgs e) { e.Row.BackColor = "Blue"; } Hope this will help you. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET csharp asp-net help

  • how to restrict the users not to enter any value on the address bar.
    D dilipv 0

    hi jagadeeshkumar2106, According to me there is no such possibilites of preveting user from editing Address bar. Because if you doesn't allow user to edit Address bar then how can user switch to some another website. I know you preveting user from editing your website's URL but if user wanna swtich to another website then it is not possible. It's better to use URL Rewriting which simply hide important contents of URL and show different URL to user. So, even User edit URL it doesn't effect your application at all. Hope this will help you. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET tutorial

  • Help me Please
    D dilipv 0

    hi Zeeshan Memon, I think answer exists in your question only.

    Zeeshan Memon wrote:

    Visible="<%# IIf(CType(Container, GridViewRow).RowIndex = 0, false, true)>" CommandName="MoveUp" CommandArgument="<%# Container.DataItemIndex %" >;

    You should find RowCount of your gridview because your gridview is 0 based indexed. Just need to check index is RowCount-1 OR not then you show and hide your control. <asp:linkbutton id="lblUp" runat="server" font-underline="true" forecolor="blue" text="Up"> Visible="<%# IIf(CType(Container, GridViewRow).RowIndex = CType(Container, GridViewRow).RowCount -1, false, true)>" CommandName="MoveUp" CommandArgument="<%# Container.DataItemIndex %" >; Hope this will help you. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET css docker help question

  • problem with css
    D dilipv 0

    hi a-+s-+p-+, Since you are applying CSS to Server side Control then either you are not specifying CSS class to style tag inside head as follows. <head> <style type="text/css"> .btcomp { background-color:#FFFFFF; font-weight:bold; width:200px; height:500px; } </style> </head> OR you are made separate CSS within the project but not linked CSS to page correctly as follows. <link href="styles.css" rel="stylesheet" /> Hope this will solve your problem. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET css help

  • I have problem using datareader?
    D dilipv 0

    hi Janvi, You can use DataReader with Stored Procedure easily in following way. SqlDataReader reader = SqlCommand_Object.ExecuteReader(); If you wanna full article to learn new ways to use all functionality, just visit the following link. http://www.akadia.com/services/dotnet_data_reader.html Hope this will help you. Thanks & Regards dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET csharp help question

  • Keyword feature ?
    D dilipv 0

    hi scm22ri, Any search engine (Google, Yahoo, MSN) basically works on the Meta tag of the any webpage. For ex:- If you feed any query to Google, then Google first searches Meta Tag, Title, Contents of the all the web-pages. Then make a bunch of all the related web-pages, after that rank the web-pages based on thier relativeness to the query. There is one article based on Search facility. Just check this link. http://www.codeproject.com/KB/IP/Spideroo.aspx Hope this will help you. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET question

  • Search a keyword and highlight it
    D dilipv 0

    hi yadlaprasad, You wanna make use of Google's strategy which simplifies your search structure. I seen one article based on it, which helps you alot. Please check out this link. http://www.codeproject.com/KB/IP/Spideroo.aspx Hope this will help you. Thanks & Regards

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET

  • dialog box
    D dilipv 0

    hi Gayatri, Thare is no built in DialogBox in Asp.net such as Windows form. To display DialoBox you should use JavaScript function as follows. function MsgOkCancel() { var fRet; fRet = confirm('Are you sure?'); alert(fRet); } [test me](javascript:MsgOkCancel\(\);) Hope this will help you. Thanks & Regards Dilipv

    Dilip Kumar Vishwakarma Programmer .Net Consulting

    ASP.NET csharp asp-net help

  • onMouseOver
    D dilipv 0

    hi VanithaVasu, I think you want to do collapse OR expand TreeView so you are requesting for OnMouseOverevent. If you wanna the same you can do in following way by changing style of each Visited OR Hover OR Selected node. If i am wrong than than you wanna call a javascript function OnMouseOver event of TreeView. Like this way Hope this will Help You. Thanks & Regards Dilip Kumar Vishwakarma

    Dilip Kumar Vishwakarma Programmer .Net Consulting If this post is answer for your query then don't forget to mark as an answer.

    ASP.NET csharp asp-net

  • we select any country then the corresponding city is displayed in another dropdown without post back
    D dilipv 0

    hi, M.Nasar plz refer this site for Populating a DropDownList using AJAX and ASP.NET:-Its also has a sample code.. http://aspalliance.com/716_Populating_a_DropDownList_using_AJAX_and_ASPNET Thankx Regards, Shirazee Kajani Programmer .Net Consulting

    ASP.NET

  • Generating two level using asp:menu control [modified]
    D dilipv 0

    hi sanjubaba, As we know asp:Menu control provide any level menu but it is not flexible to use directly becuase your menu will become static. If you want to change menu items than you have to change front-end. Hence it is better to use database driven menu using asp:Menu control. Just check this link. Building a Database Driven Hierarchical Menu using ASP.NET 2.0 Hope this will help you. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    If this post is answer for your query then don't forget to mark as an answer.

    ASP.NET question csharp asp-net

  • sql server to web server
    D dilipv 0

    hi Jamie1985, Few days ago i also faced the same issue and got dela with the help of the another forum. I pasted the link, hope this will help you. http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/ If you have any problem after that feel free to share with me. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET database sql-server sysadmin help

  • import addresses from gmail, yahoo, hotmail, aol, etc.
    D dilipv 0

    hi shefali_sinha, According to me, only user can import a comma separated list of address info from address books. This can be happen on variety of domains such Yahoo, Gmail, Rediff, Aol and etc. These service providers doesn't allow any third party software to access address book of their users and generate a comma separated list from it. Even if you know User Name And password then also Domain host doesn't provide access to any information of user using Software. You can access any user account using it's User id and password and generate a comma separated list from it but only manually. There is no such (Tool)software which automatically feed user id and password and make login to domain name. These domain host keep track of such things and mark as a Spam. So, it is better to generate a comma separated list of address info from address books after that you can use such list to your software. You can read list easily. Also all these people on the internet talking about providing such facility is fake. If such things are possible then there is no security on the email and no secure HTTP's. Hope this will help you. Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET csharp asp-net database sql-server sysadmin

  • need regular expression of a strict (999) 999-9999 Format
    D dilipv 0

    hi Rocky#, Moast of the time i have failed due to lacking in the understanding of Regular Expression. So, i downloaded a software which contains a library of REGEX (Regular Expressions), from that i found REGEX of your need. \((?<AreaCode>\d{3})\)\s*(?<Number>\d{3}(?:-|\s*)\d{4}) Hope this help you. To download this software free of cost try this link. http://www.ultrapico.com/Expresso.htm Make other people to aware of such software. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET csharp visual-studio regex

  • vs2003 and vs2005
    D dilipv 0

    hi HMagesh, I also faced similar situation. Now i have both vs2003 and vs2005 along with SQL server 2005 in my PC. There is no problem at all at the installation time. There is no conflict between two versions of VS. Trust me, i am using both. Hope you work been done. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET tutorial question

  • dataset
    D dilipv 0

    hi Raja, I find an interesintg question to all of us. So, i immedaitely started searching on it, and find an article. Following is the link hope this will help to all of us. http://www.codersource.net/csharp_untyped_strong_typed_datasets.aspx Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET question

  • Open word document on ASPX page
    D dilipv 0

    hi mpavas, Few days ago i also faced the same problem. My problem is that i want to embed Resume documents(doc) to aspx page. It works but there is no formatting, no indentation of letters. So, to achieve this you need to save your documents as Single Web Page in Save As Typeof Save As dialog Box. You can see this in MS-Word 2003. But you should do this programatically. Your document can easily embed into Iframe of Html tag. Believe me it works without changing formatting of word document. Hope this will help you. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET sysadmin xml

  • VIsual studio
    D dilipv 0

    hi kibromg, First of all you are using internet, you must search on Google with your error as query to Google. Please check given link, hope this will help you. http://forums.asp.net/p/905409/1880054.aspx If this will not help you go to following link. It is Google query of your error. http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=HPND,HPND:2006-26,HPND:en&q=Unable+to+connect+to+visual+studio%27s+local+web+server First try to make research on the internet after that make query to forums. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET csharp visual-studio sysadmin help

  • asp.net + access 2003
    D dilipv 0

    hi ritu4321, I think you need to check your database connectivity and SQL statement's execution. If everything is fine then please check your query contains '*' instead of '%' string command = "Select id, documenttitle, filepath from testdocuments where documenttitle like '%" + filename + "%'"; Hope this will help you. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET database csharp asp-net

  • login page & browse button coding
    D dilipv 0

    hi gag87, There is no person going to help you by sending code to you directly. We can show you articles which you need to understand by yourself only, if problem persist then ask query to forum. Please visit the following link. Click Here Hope you understand, try to make you problem solved. Thanks & Regards Dilip Kumar Vishwakarma

    Programmer .Net Consulting

    ASP.NET csharp asp-net
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups