Click here to Skip to main content
15,867,986 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev27-Mar-15 3:54
QuickBooksDev27-Mar-15 3:54 
QuestionWrong count is also accepting in Jquery and accepting keywords any where Pin
venu.rayapati24-Mar-15 2:02
professionalvenu.rayapati24-Mar-15 2:02 
Questiongive me solution plzzzzzzzzzz Pin
Member 1149988323-Mar-15 19:08
Member 1149988323-Mar-15 19:08 
SuggestionRe: give me solution plzzzzzzzzzz Pin
Richard MacCutchan23-Mar-15 22:30
mveRichard MacCutchan23-Mar-15 22:30 
AnswerRe: give me solution plzzzzzzzzzz Pin
F-ES Sitecore23-Mar-15 22:38
professionalF-ES Sitecore23-Mar-15 22:38 
AnswerRe: give me solution plzzzzzzzzzz Pin
ZurdoDev24-Mar-15 8:53
professionalZurdoDev24-Mar-15 8:53 
GeneralRe: give me solution plzzzzzzzzzz Pin
Member 467887925-Mar-15 4:49
Member 467887925-Mar-15 4:49 
QuestionHow to Insert Update And Delete Record for html table in asp.net without gridview ? Pin
fateparakiran21-Mar-15 9:32
fateparakiran21-Mar-15 9:32 
my web page in table is create but update and delete functionality is not worked.......to plz help me

my html table

<div class="outer">
<div class="inner">
<div class="page-header"><!-- Page header -->
<h5><i class="font-home"></i>Data Display</h5>
<ul class="icons">
<li><a href="#" class="hovertip" title="My tasks"><i class="font-tasks"></i></a></li>
<li><a href="#" class="hovertip" title="Reload data"><i class="font-refresh"></i></a></li>
<li><a href="#" class="hovertip" title="Settings"><i class="font-cog"></i></a></li>
</ul>
</div><!-- /page header -->
<div class="body" >

<div class="block well">

<div class="table-overflow">
<table class="table table-striped" id="data-table">
<thead>
<tr>
<th>Id</th>
<th>State Name</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<asp:PlaceHolder id="PlaceHolder1" runat="server"></asp:PlaceHolder>

</tbody>
</table>
</div>
</div>
</div>
</div>
</div>




asp.net code


public void DataLoad()
{
DataSet ds = obj.gd("select * from state where adminid='" + Session["idd"] + "'");
for (int i = 0; i < ds.Tables[0].Rows.Count;i++ )
{
htmlTable.Append("<tr>");
htmlTable.Append("<td>" + ds.Tables[0].Rows[i]["id"] + "</td>");
htmlTable.Append("<td>" + ds.Tables[0].Rows[i]["state"] + "</td>");
htmlTable.Append("<td>" + "<a href='#'> <i class='icon-pencil' /> </i></a>" + "</td>");
htmlTable.Append("<td>" + "<a href='#'> <i class='icon-remove' /> </i></a>" + "</td>");
htmlTable.Append("</tr>");
}
PlaceHolder1.Controls.Add(new Literal { Text = htmlTable.ToString() });
}
AnswerRe: How to Insert Update And Delete Record for html table in asp.net without gridview ? Pin
Ali Al Omairi(Abu AlHassan)22-Mar-15 22:52
professionalAli Al Omairi(Abu AlHassan)22-Mar-15 22:52 
QuestionMemberhip.CreateUser() is given an exception !! Pin
fahd95121-Mar-15 5:57
fahd95121-Mar-15 5:57 
AnswerRe: Memberhip.CreateUser() is given an exception !! Pin
Matt U.24-Mar-15 9:47
Matt U.24-Mar-15 9:47 
Questionget logged in user name Pin
Praveen Kandari20-Mar-15 0:53
Praveen Kandari20-Mar-15 0:53 
AnswerRe: get logged in user name Pin
Afzaal Ahmad Zeeshan20-Mar-15 1:14
professionalAfzaal Ahmad Zeeshan20-Mar-15 1:14 
QuestionInterview Question -Why Validation in Update Panel is not working properly? Pin
Rajesh waran19-Mar-15 19:37
professionalRajesh waran19-Mar-15 19:37 
AnswerRe: Interview Question -Why Validation in Update Panel is not working properly? Pin
F-ES Sitecore19-Mar-15 22:36
professionalF-ES Sitecore19-Mar-15 22:36 
AnswerRe: Interview Question -Why Validation in Update Panel is not working properly? Pin
Rajesh waran19-Mar-15 23:59
professionalRajesh waran19-Mar-15 23:59 
Questioncheck data exist or not? Pin
Praveen Kandari19-Mar-15 0:00
Praveen Kandari19-Mar-15 0:00 
AnswerRe: check data exist or not? Pin
Afzaal Ahmad Zeeshan19-Mar-15 1:39
professionalAfzaal Ahmad Zeeshan19-Mar-15 1:39 
AnswerRe: check data exist or not? Pin
F-ES Sitecore19-Mar-15 1:40
professionalF-ES Sitecore19-Mar-15 1:40 
AnswerRe: check data exist or not? Pin
jkirkerx19-Mar-15 8:24
professionaljkirkerx19-Mar-15 8:24 
QuestionInterview Question for ASP.NET Pin
Victor Ebe18-Mar-15 5:53
Victor Ebe18-Mar-15 5:53 
AnswerRe: Interview Question for ASP.NET Pin
ZurdoDev19-Mar-15 3:46
professionalZurdoDev19-Mar-15 3:46 
QuestionInfinite Scroll by jquery and asp.net and page slow & crash issue Pin
Tridip Bhattacharjee17-Mar-15 23:11
professionalTridip Bhattacharjee17-Mar-15 23:11 
AnswerRe: Infinite Scroll by jquery and asp.net and page slow & crash issue Pin
ZurdoDev19-Mar-15 3:47
professionalZurdoDev19-Mar-15 3:47 
GeneralRe: Infinite Scroll by jquery and asp.net and page slow & crash issue Pin
Tridip Bhattacharjee19-Mar-15 21:34
professionalTridip Bhattacharjee19-Mar-15 21:34 

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.