Click here to Skip to main content
15,890,741 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: problematically merging rows and Columns in Gridview Pin
Prosanta Kundu online31-Jan-10 17:34
Prosanta Kundu online31-Jan-10 17:34 
QuestionInsert Record from Textbox into GridView Pin
.NET- India 29-Jan-10 1:03
.NET- India 29-Jan-10 1:03 
AnswerRe: Insert Record from Textbox into GridView Pin
nagendrathecoder29-Jan-10 1:15
nagendrathecoder29-Jan-10 1:15 
AnswerRe: Insert Record from Textbox into GridView Pin
sashidhar29-Jan-10 1:20
sashidhar29-Jan-10 1:20 
GeneralRe: Insert Record from Textbox into GridView Pin
nagendrathecoder29-Jan-10 1:24
nagendrathecoder29-Jan-10 1:24 
GeneralRe: Insert Record from Textbox into GridView Pin
sashidhar29-Jan-10 1:27
sashidhar29-Jan-10 1:27 
GeneralRe: Insert Record from Textbox into GridView Pin
nagendrathecoder29-Jan-10 1:31
nagendrathecoder29-Jan-10 1:31 
GeneralRe: Insert Record from Textbox into GridView Pin
.NET- India 29-Jan-10 2:00
.NET- India 29-Jan-10 2:00 
It may be very easier for you to do but not for me. Actually I've to add row with data into gridview using javascript. And i've reached to an extent. But i'm not getting how to insert the record into gridview. I've done to add into a 'tbody' tag. Please suggest me the way or what changes i should make in my code. I'm giving my code below.

{
var myTable = document.getElementById("ctl00_cphAdminMaster_GridView1");

var tBody = myTable.getElementsByTagName('tbody')[0];
var newTR = document.createElement('tr');
var newTD = document.createElement('td');
newTD.innerHTML=document.getElementById("ctl00_cphAdminMaster_txtName").value;
newTR.appendChild (newTD);
//tBody.appendChild(newTR); myTable.appendChild(newTR); }
GeneralRe: Insert Record from Textbox into GridView Pin
sashidhar29-Jan-10 4:38
sashidhar29-Jan-10 4:38 
QuestionASP.net Pin
gul_aries28-Jan-10 23:50
gul_aries28-Jan-10 23:50 
AnswerRe: ASP.net Pin
Abhijit Jana29-Jan-10 0:20
professionalAbhijit Jana29-Jan-10 0:20 
AnswerRe: ASP.net Pin
R. Giskard Reventlov29-Jan-10 0:45
R. Giskard Reventlov29-Jan-10 0:45 
QuestionCan i put Response.Redirect("errorpage.aspx") in Application_Error()? Pin
adkalavadia28-Jan-10 23:32
adkalavadia28-Jan-10 23:32 
AnswerRe: Can i put Response.Redirect("errorpage.aspx") in Application_Error()? Pin
Qasim198428-Jan-10 23:50
professionalQasim198428-Jan-10 23:50 
GeneralRe: Can i put Response.Redirect("errorpage.aspx") in Application_Error()? Pin
adkalavadia29-Jan-10 0:18
adkalavadia29-Jan-10 0:18 
AnswerRe: Can i put Response.Redirect("errorpage.aspx") in Application_Error()? Pin
sashidhar29-Jan-10 0:29
sashidhar29-Jan-10 0:29 
AnswerRe: Can i put Response.Redirect("errorpage.aspx") in Application_Error()? Pin
Palash Biswas2-Feb-10 17:56
Palash Biswas2-Feb-10 17:56 
QuestionAdd scrollbar to listbox/Treeview after specific height. Pin
Qasim198428-Jan-10 23:04
professionalQasim198428-Jan-10 23:04 
AnswerRe: Add scrollbar to listbox/Treeview after specific height. Pin
sashidhar28-Jan-10 23:26
sashidhar28-Jan-10 23:26 
GeneralRe: Add scrollbar to listbox/Treeview after specific height. Pin
Qasim198428-Jan-10 23:46
professionalQasim198428-Jan-10 23:46 
AnswerRe: Add scrollbar to listbox/Treeview after specific height. Pin
Sneha Bisht29-Jan-10 0:01
Sneha Bisht29-Jan-10 0:01 
GeneralRe: Add scrollbar to listbox/Treeview after specific height. Pin
Qasim198429-Jan-10 0:15
professionalQasim198429-Jan-10 0:15 
GeneralRe: Add scrollbar to listbox/Treeview after specific height. Pin
Ravindra Nidhonkar31-Jan-10 23:16
Ravindra Nidhonkar31-Jan-10 23:16 
QuestionDIV Pin
aniju mathew28-Jan-10 22:16
aniju mathew28-Jan-10 22:16 
AnswerRe: DIV Pin
sashidhar28-Jan-10 22:21
sashidhar28-Jan-10 22:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.