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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
C

Chetan visodiya

@Chetan visodiya
About
Posts
30
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to convert column to row in SQL Server 2005
    C Chetan visodiya

    I have the following result set in sql server 2005. Column1 column2 column3 column4 cc cc1 cc2 cc3 dd dd1 dd2 dd3 Now I want to convert above result into the following table without using cursor in SQL Server 2005. column1 cc dd column2 cc1 dd1 column3 cc2 dd2 column4 cc3 dd3 Please help me.

    Database database sql-server sysadmin help tutorial

  • How to set WrapText functionality for a cell of excelsheet?
    C Chetan visodiya

    We are using SpreadSheet component of OWC 11.0 for our ASP.net application.There have not a property for WrapText functionality. How can i implement WrapText functionality for a cell of SpreadSheet.

    ASP.NET question csharp asp-net tutorial

  • Appling Alternate Rows with border for Datagrid
    C Chetan visodiya

    Can you please share the code?

    ASP.NET

  • Appling Alternate Rows with border for Datagrid
    C Chetan visodiya

    You can not apply the border to alernate rows usaing AlternateItemStyle. Grid View indirectly generates Table structure. Whatever style you applied to AlternateItemStyle, it paste into inside <tr> tag. And you can not set the border using tr tag.

    ASP.NET

  • split the string and check it to another string
    C Chetan visodiya

    This will not work for below string string lgtext = "text5, text2, text6, text4, text7text8 "; And you have find exact "text8". if you use Contains then it returns true but text8 is not in the collection. So better to use below code. protected void Button1_Click(object sender, EventArgs e) { string lgtext = "text5, text2, text6, text4"; string shtext = "text2"; string[] split = lgtext.Split(','); for(int i=0;i&lt; =split.Length-1;i++) { if(split[i].Contains(shtext)) Response.Write("Found"); } }

    ASP.NET tutorial

  • Javascript Error: "Object Required" [modified]
    C Chetan visodiya

    Make sure that your text box control(FreeTextBox1) is enabled and visible. if not then first enable it then set the focus otherwise it gives an error.

    ASP.NET help java javascript html css

  • dropdown data lost on post back of contentpage
    C Chetan visodiya

    First find the asp:Content for dropdownlist and then check that EnableViewState property of the asp:Content is true. Also check that EnableViewState property of ContentPlaceHolder in master page. if its false then set true.

    ASP.NET help

  • Javascript Error: "Object Required" [modified]
    C Chetan visodiya

    Replace first line of show function with below code var ctrl = document.getElementById('<%=FreeTextBox1.ClientID%>'); It might help you.

    ASP.NET help java javascript html css

  • JavaScript-IE6 [modified]
    C Chetan visodiya

    try this <a href="javascript:void(0)" onclick="javascript:history.back();" target="_search" type="text/html"> Back </a>

    ASP.NET javascript help question

  • how to maintain viewstate of a runtime generated control
    C Chetan visodiya

    Put the above code in page load event and make sure that this code will execute for every request(wheather it is postback or not).

    ASP.NET tutorial

  • Keyboard Shortcut in Sitemap
    C Chetan visodiya

    Use AccessKey Attribute. Hope this will help you..

    ASP.NET question csharp asp-net

  • popup window
    C Chetan visodiya

    Make sure that browser's "block pop-up windows" option is off.

    ASP.NET javascript help

  • how to modify the app.config file dynamically
    C Chetan visodiya

    Hi All, I want to modify the app.config file using vb.net(means change the value of key). how to do this? If you know please tell me. thanks in advance chetan

    Visual Basic csharp tutorial question

  • How to count listbox items in codebehind when i add item using Javascript!
    C Chetan visodiya

    Hi! In facts, my problem is to access the info in the server side! If i use ListBox.Items... It is not working but I really have two rows in my listbox... Look this: This is my javascript code: First i select the item in listbox1 then click on add button so add seleccted item into listbox2 and remove selected item from listbox1 using javascript. function fctAjoutAssigne() { var mylist = document.getElementById("ListBox1") var mylist2 = document.getElementById("ListBox2") mylist2.options[mylist2.length]= new Option(mylist.options[mylist.selectedIndex].text,mylist.options[mylist.selectedIndex].value); mylist.remove(mylist.selectedIndex) } and at last i click on save button. code of save button is : For i = 0 To ListBox2.Items.Count - 1 strAssignation &= ListBox2.Items(i).Value & "," strNomAssigne &= ListBox2.Items(i).Text & ";" Next But ListBox2.Items.Count = 0 even If I have two items in my list... Amazing... if you know then tell me how to fix this. chetan patel

    ASP.NET help javascript sysadmin tutorial

  • securing webapp with web.config
    C Chetan visodiya

    hi Orb1t, If you try below code in to web.config file and check that It is working but incase it is not work then try to flase tracing at page level like below: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="Trace.aspx.vb" Inherits="MCSDWebAppsVB.Trace" trace="True" %> chetan Visodiya -- modified at 8:05 Thursday 3rd August, 2006 Chetan visodiya

    ASP.NET debugging windows-admin help question

  • how to convert from any file to pdf file using vb.net
    C Chetan visodiya

    Hi all, I am developing one application using vb.net.In that I want to convert any file to pdf file. If you know then please help me. and also you know the code then send me....please Thanks Chetan

    Web Development csharp help tutorial

  • How to check that file is modified or not using CAPICOM or any solution
    C Chetan visodiya

    Hi All, I have developing the windows project. In this project I want to send a pdf file after adding the Digital Signature. and when we retrive same file i check that this file is modofied or not and also check that This file was sended by me or not. how to do this? Adding the Signature is done with CAPICOM but Using CAPICOM we check that file is modified ot not? Please help me. Thanks in advance Chetan Visodiya -- modified at 2:28 Monday 10th July, 2006

    Web Development cryptography help tutorial question

  • how to remove the close button from a Web Page [modified]
    C Chetan visodiya

    Hi, I have one form in Asp.net and I want to remove ( disable) the close, maximize when opening the this Form. I write the following code. window.open("/QCOnline/Source/Password.aspx","_blank","toolbar=no,close=no ,top=270,left=350, location=no, directories=no, status =no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=340, height=187"); Maximize button is disable but close button is stil enable. So Please if you know how to disable the close button. thanks in advance . Chetan -- modified at 0:27 Thursday 15th June, 2006

    Web Development csharp asp-net tutorial

  • how to disable the close button from Form
    C Chetan visodiya

    Hi, I have one form in Asp.net and I want to remove ( disable) the close, maximize when opening the this Form. I write the following code. window.open("/QCOnline/Source/Password.aspx","_blank","toolbar=no,close=no ,top=270,left=350, location=no, directories=no, status =no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=340, height=187"); Maximize button is disable but close button is stil enable. So Please if you know how to disable the close button. thanks in advance . Chetan

    Web Development csharp asp-net tutorial

  • whitespace around css background
    C Chetan visodiya

    Hi , You write the following code in body tag topmargine="0" rightmargin="0" leftmargin="0" bottom margin="0" and also write cellspacing="0" and cellpadding="0" in every table tag Chetan Visodiya

    Web Development csharp php css graphics question
  • Login

  • Don't have an account? Register

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