Please post your Question very clearly.
R.Palanivel 10:01 4 Jan '06
Please post your Question very clearly.
R.Palanivel 10:01 4 Jan '06
Hi the problem is your drop downl list not loaded please check viewsouce. your c# code write. you have modify your Gridview HTML code. Thanks & Regards
R.Palanivel 10:01 4 Jan '06
try to set runat="server" property else send me you gridview's HTML code.
R.Palanivel 10:01 4 Jan '06
HI Mention the cell name or index like this DropDownList ddlList=(DropDownList)(GridView1.Rows[e.NewEditIndex].Cells[0].FindControl(""));
R.Palanivel 10:01 4 Jan '06
HI Do one thing . Create one function in the asp page ]]> ... ... ... you can write this function in the same page or ".inc" file This should help you.
R.Palanivel 10:01 4 Jan '06
Hi you can find any control in javascript by the follwing code snippet document.documentElement.getElementsByTagName("input").count .... ..... write one for loop and search for the checkbox control.
R.Palanivel 10:01 4 Jan '06
Hi create one div tag like
in c# file generate the string for that control like string FileName= "8K_NQe57C-k"; string strVideo=" + FileName + "type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'/> " divContent.innerHTML = strVideo
R.Palanivel 10:01 4 Jan '06
Hi tag is for display images only. if you want to redirect page when click that image button then you follow this code  this code should help you more.
R.Palanivel 10:01 4 Jan '06
Hi omlac There is no Refresh mthod available in Javascript. Better you try the following code location.href="mention the same page name";
R.Palanivel 10:01 4 Jan '06
modified on Tuesday, August 19, 2008 8:08 AM
Hi Friends I Need to Display Different country's current time in asp.net page. Like Saudi Arabia,Chicago,India. Is there any possible to display using Globalization. Thanks in advance.
R.Palanivel 10:01 4 Jan '06
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
Exactly this is custom control not a "User Control". Thank you very much.
r_palanivel83 10:01 4 Jan '06
Hi Thanks for your reply. I Need to create my own controls with specific rules.so i avoid to use AJAX. Please let me know the procedure for developing controls.
r_palanivel83 10:01 4 Jan '06
Hi I need to develop the control like r.a.d which resides in toolbox which will drag into our web page (eg: textbox,label,grid control etc.). Normal user controls are used by <@Register> tag [i dont wnat like this].
r_palanivel83 10:01 4 Jan '06
Set your Link button's PostBackUrl into your redirect Page. Get the CustomerId value By "PreviousPage" object
r_palanivel83 10:01 4 Jan '06
Place your Gridview inside the
tag and set the div propery as follow
r_palanivel83 10:01 4 Jan '06
add this code Response.Clear(); Response.ContentType = "application/vnd.ms-excel"; Response.AddHeader("content-disposition", "attachment;filename=DCNReport.xls"); Response.Charset = ""; this.EnableViewState = false;
r_palanivel83 10:01 4 Jan '06
HI I Wrote My Code as follows. Its Working fine. But delete event didnt fire. I also mentioned the Delete event in GridView Control runat="server" id="gvwRoleScreen" width="100%"> OnRowDeleting="gvwRoleScreen_RowDeleting" OnRowEditing="gvwRoleScreen_RowEditing"/> ImageUrl="~/Images/drop.png" OnClientClick="return confirm('Are you sure to delete this record?');" />
r_palanivel83 10:01 4 Jan '06
modified on Monday, December 17, 2007 5:40:00 AM
Hi I got a problem in ASP.NET [Frame work 2.0] WEB Application My Namespace is INVT.WEB i refer this in code behind as <%@ Page Language="C#" AutoEventWireup="false" CodeBehind="frmIndex.aspx.cs" Inherits="INVT.WEB.frmIndex" %> I got the following error when i run this project. Parser Error Message: Could not load type 'INVT.WEB.frmIndex'. Regards R.Palanivel -- modified at 4:06 Wednesday 12th September, 2007
r_palanivel83 10:01 4 Jan '06
Add this code on "Page Load" DropDownList1.Attributes.Add("onchange","fnToolTip()"); ---------------- Add this javascript code on HTML Code view function fnToolTip() { selIndex=document.getElementById("DropDownList1").selectedIndex selValue=document.getElementById("DropDownList1").value // alert(selValue) document.getElementById("DropDownList1").title=selValue } ------------------- Add this code on Body ITEM1 ITEM2 ITEM3 ITEM4 -------------------- Try this should work fine Regards R.Palanivel r_palanivel83 10:01 4 Jan '06