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
J

jai_101

@jai_101
About
Posts
14
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to Remove Computer Virus without AntiVirus Software
    J jai_101

    Hi friends,                I need to know how to remove virus from the Computer without using Antivirus Software.                If you know the Answer. Please Reply Bye, :rose::rose::rose: Victory is Sweetest when you have Known Defeat

    Hardware & Devices tutorial

  • Problem with Ajax :TabContainer
    J jai_101

    Hi,    Thank You for Your Reply. Bye. :rose::rose::rose:

    ASP.NET help tutorial question

  • Problem with Ajax :TabContainer
    J jai_101

    Hi,          I have Ajax Tabcontainer with in the TabPanel I used User Control.I have two <div> in each UserControl. Whenever the TabPanel Changed i wish to display the First <div> in the User Control with in that User Control. But I don't Know how to do this? which Event Fire when the TabPanel is changed ? Please give Solution. Thanks in Advance. :rose: :(( :rose:

    ASP.NET help tutorial question

  • Line Break in Page.RegisterClientScriptBlock
    J jai_101

    Hi                   Thank You so much for Your Reply.                      It works well. Bye. :rose::rose::rose:

    ASP.NET csharp asp-net

  • Line Break in Page.RegisterClientScriptBlock
    J jai_101

    Hi, I need to display the 3 Lines of text in the alert Box in asp.net code behind but '\n' is does not work. My coding is as follows Page.RegisterClientScriptBlock("", "alert('Please Enter Date \n Please Enter Intime \n Please Enter Outtime')"); If any one know the solution Please send it immediately. Bye. :((

    ASP.NET csharp asp-net

  • Ajax AutocompleteExtender does not Work
    J jai_101

    Hi, I used Ajax AutocompleteExtender in 3 Places. But this Worked well in 2 Places and does not worked in One Place. Coding for that is as follows Any one know the Reason please immediately Help Me. Thanks in Advance Bye. :rose::rose::rose:

    ASP.NET help

  • Validate the sum of textbox
    J jai_101

    Hi, Don't allow User to Calculate the Sum in which case there is a chance to enter the wrong value. So You must calculate the value on the textChange Event of the 5th TextBox. This is very Simple. Bye. :rose::rose::rose: Learner will gain more knowledge than Teacher.

    ASP.NET csharp javascript css asp-net tutorial

  • GridView Format
    J jai_101

    Hi, First You create Gridview with the Item Template. I think you need 5 Item Template for the Gridview For Question Id, Question, Option1, Option2, Option3. Use Option button within the Gridview for Options. Use Button at the Bottom of the Gridview and when the button is pressed check the Answer with the Correct Answer and Calculate the Marks. Bye :rose:

    ASP.NET question com help

  • How to show Message Box in Asp.Net with C#
    J jai_101

    Hi, You can use any one of the Following Syntax in Code Behind. string Msg = "Hai"; string jv = "alert('" + (Msg) + "');"; ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "alert", jv, false); (or) Page.RegisterStartupScript("Error", "alert('Hai')"); bye :rose:

    ASP.NET csharp asp-net tutorial

  • Textbox Focus Problem
    J jai_101

    Hai, I don't know about it.

    ASP.NET help java javascript question

  • datacolumn boxing
    J jai_101

    In C# there are two types of Convertion is used. Boxing :convert ValueTypes to Reference Types UnBoxing :Reference Types to convert ValueTypes From Your code row[0][0] = 5; ---> This is implicit Boxing row[0][0] = (object)5; ---> This is Explicit Boxing You can use any of these to the Conversion. This is General DataBase MessageBoard. So don't ask C# Questions here use C# MessageBoard. Bye, Jai :rose:

    Database question lounge

  • Changing Sort Direction in GridView
    J jai_101

    You can Use ViewState to set the sort Direction of the Gridview on Button Click Event write the following Code : if (ViewState["SortDirection"] != "Asc" ||ViewState["SortDirection"] == null) ViewState["SortDirection"] == "Desc" else ViewState["SortDirection"] == "Asc" // Here dv is the dataView Object. Product is the Field in Gridview Based on that Field we Sort Asc or Des. dv.Sort = ViewState["Product"].ToString() + " "+ViewState["SortDirection"].ToString(); gvBusinessSourcingList.DataSource = dv; gvBusinessSourcingList.DataBind(); Ok, Bye Jai

    ASP.NET question help

  • How to pass array in asp.net(c#) from one page to other?
    J jai_101

    Hi, You can Use Querystring for Passing Array from one Page to Another page. I hope the following Sample Code will Help You. Let's start by creating the array in CreateArray.asp 'Create an array that contains 'the days of the week Dim aWeekDays(6) aWeekDays(0) = "Sunday" aWeekDays(1) = "Monday" aWeekDays(2) = "Tuesday" aWeekDays(3) = "Wednesday" aWeekDays(4) = "Thursday" aWeekDays(5) = "Friday" aWeekDays(6) = "Saturday" Now, to store the array contents in the querystring, we will loop from LBound(aWeekDays) to UBound(aWeekDays). For each element, we'll add an item to the querystring, having the array name, an equals sign, and then the value of the particular array element. 'Build the querystring Dim iLoop, strQueryString For iLoop = LBound(aWeekDays) to UBound(aWeekDays) strQueryString = strQueryString & "WeekDays=" & aWeekDays(iLoop) strQueryString = strQueryString & "&" Next 'Cut off the last character strQueryString = Left(strQueryString, Len(strQueryString) - 1) 'Now, create the actual hyperlink %> ReceiveArray.asp Bye Jai

    ASP.NET csharp help asp-net data-structures tutorial

  • How we can fetch a textbox value when an enter key is pressed ?
    J jai_101

    You can write the JavaScript Code and Get the Value of TextBox ---- This is Javascript Function that show the Value of Textbox in alert Box when Enter Key is Pressed-------------- function CheckEnter_Onclick(e) { var key; key=(e.which) ? e.which : e.keyCode; if(key==13) { var x= document.getElementById('<%=txt.ClientID %>').value; alert(x); } return true; }

    ASP.NET 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