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
jai_101
Posts
-
How to Remove Computer Virus without AntiVirus Software -
Problem with Ajax :TabContainerHi, Thank You for Your Reply. Bye. :rose::rose::rose:
-
Problem with Ajax :TabContainerHi, 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:
-
Line Break in Page.RegisterClientScriptBlockHi Thank You so much for Your Reply. It works well. Bye. :rose::rose::rose:
-
Line Break in Page.RegisterClientScriptBlockHi, 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. :((
-
Ajax AutocompleteExtender does not WorkHi, 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:
-
Validate the sum of textboxHi, 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.
-
GridView FormatHi, 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:
-
How to show Message Box in Asp.Net with C#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:
-
Textbox Focus ProblemHai, I don't know about it.
-
datacolumn boxingIn 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:
-
Changing Sort Direction in GridViewYou 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
-
How to pass array in asp.net(c#) from one page to other?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
-
How we can fetch a textbox value when an enter key is pressed ?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; }