Click here to Skip to main content
15,895,256 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Question"This property cannot be set for anonymous users" error Pin
amin_behzadi16-Oct-06 23:59
professionalamin_behzadi16-Oct-06 23:59 
QuestionSTA Pin
amaneet16-Oct-06 23:53
amaneet16-Oct-06 23:53 
AnswerRe: STA Pin
J4amieC17-Oct-06 0:27
J4amieC17-Oct-06 0:27 
QuestionSend an sms from web form Pin
samerh16-Oct-06 23:52
samerh16-Oct-06 23:52 
AnswerRe: Send an sms from web form Pin
_AK_17-Oct-06 1:40
_AK_17-Oct-06 1:40 
QuestionI want to print some portion of the page using asp.net. Pin
jigisha gajjar16-Oct-06 23:51
jigisha gajjar16-Oct-06 23:51 
AnswerRe: I want to print some portion of the page using asp.net. Pin
prakash_21017-Oct-06 0:12
prakash_21017-Oct-06 0:12 
AnswerRe: I want to print some portion of the page using asp.net. Pin
just3ala217-Oct-06 0:28
just3ala217-Oct-06 0:28 
Hi man
I wrote u some piece of code as a sample for ur question.
It's all about putting ur repeating control or the part you want in a div and give it an id and add the javascript Wink | ;)


<html>
<head>
<script language=javascript>

function f1()
{
var divTest;
var divHTML;
var divText;
divTest = document.getElementById("testDiv")
divHTML = divTest.innerHTML;
divText = divTest.innerText;
window.alert(divHTML);
window.alert(divText);

}

</script>
</head>
<body>
<p align="center">
<input type="button" value="Test" onclick="f1();">
<br>
</p>
<div align=center id=testDiv>
<table width=500 border=1>
<tr align=center>
<td width=50%>Test Test Test</td>
</tr>
<tr align=center>
<td width=50%>Testing Testing Testing</td>
</tr>
</table>
</div>
</body>
</html>

Hope this would help



Best Regards
3ala2 Smile | :)
QuestionProblem Pin
amaneet16-Oct-06 23:49
amaneet16-Oct-06 23:49 
AnswerRe: Problem Pin
_AK_17-Oct-06 0:18
_AK_17-Oct-06 0:18 
AnswerRe: Problem Pin
V.17-Oct-06 0:19
professionalV.17-Oct-06 0:19 
QuestionSlicing audio file Pin
Sivaprasad C16-Oct-06 23:42
Sivaprasad C16-Oct-06 23:42 
AnswerRe: Slicing audio file Pin
Andrei_KS17-Oct-06 20:09
Andrei_KS17-Oct-06 20:09 
Questionhow to pass a button through email Pin
prakash_21016-Oct-06 23:39
prakash_21016-Oct-06 23:39 
AnswerRe: how to pass a button through email Pin
thomas_joyee17-Oct-06 6:17
thomas_joyee17-Oct-06 6:17 
GeneralRe: how to pass a button through email Pin
prakash_21017-Oct-06 18:05
prakash_21017-Oct-06 18:05 
GeneralRe: how to pass a button through email Pin
MIHAI_MTZ17-Oct-06 21:55
MIHAI_MTZ17-Oct-06 21:55 
QuestionRe: how to pass a button through email Pin
prakash_21017-Oct-06 22:35
prakash_21017-Oct-06 22:35 
AnswerRe: how to pass a button through email Pin
MIHAI_MTZ17-Oct-06 22:43
MIHAI_MTZ17-Oct-06 22:43 
GeneralRe: how to pass a button through email Pin
prakash_21017-Oct-06 22:52
prakash_21017-Oct-06 22:52 
GeneralRe: how to pass a button through email Pin
MIHAI_MTZ17-Oct-06 23:01
MIHAI_MTZ17-Oct-06 23:01 
GeneralRe: how to pass a button through email Pin
prakash_21017-Oct-06 23:03
prakash_21017-Oct-06 23:03 
QuestionGridViewSetting Pin
NeoJey16-Oct-06 23:34
NeoJey16-Oct-06 23:34 
QuestionGridViewSetting Pin
NeoJey16-Oct-06 23:29
NeoJey16-Oct-06 23:29 
QuestionGridViewSetting Pin
NeoJey16-Oct-06 23:28
NeoJey16-Oct-06 23:28 

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.