Click here to Skip to main content
15,915,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionForum db? Pin
Karthick_gc5-Feb-09 0:38
Karthick_gc5-Feb-09 0:38 
AnswerRe: Forum db? Pin
N a v a n e e t h5-Feb-09 0:45
N a v a n e e t h5-Feb-09 0:45 
GeneralRe: Forum db? Pin
Karthick_gc5-Feb-09 1:04
Karthick_gc5-Feb-09 1:04 
GeneralRe: Forum db? Pin
AprNgp5-Feb-09 1:39
AprNgp5-Feb-09 1:39 
Questionhere i`m trying trying to connect ro the databse after get connected, it should check the entered pid value with the database in which the pid exists, i tried to to do but failed and stucked at this... Pin
ROHINIKOUNDINYA5-Feb-09 0:17
ROHINIKOUNDINYA5-Feb-09 0:17 
AnswerRe: here i`m trying trying to connect ro the databse after get connected, it should check the entered pid value with the database in which the pid exists, i tried to to do but failed and stucked at this... Pin
Sneha Bisht5-Feb-09 1:08
Sneha Bisht5-Feb-09 1:08 
GeneralRe: here i`m trying trying to connect ro the databse after get connected, it should check the entered pid value with the database in which the pid exists, i tried to to do but failed and stucked at this... Pin
ROHINIKOUNDINYA5-Feb-09 1:19
ROHINIKOUNDINYA5-Feb-09 1:19 
Questionserver side button click event after onblur event Pin
gbabu175-Feb-09 0:09
gbabu175-Feb-09 0:09 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
var change = false;
function showmsg(id) {
var res = confirm("proceed");
if (res)
change = true;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label runat="server" ID="lbl" />
<asp:TextBox ID="TextBox1" runat="server" onblur = "showmsg(this.id)" ></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button"
OnClientClick = "return change;change=false;" onclick="Button1_Click" />
</div>
</form>
</body>
</html>

.cs

public partial class blurtest : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

protected void Button1_Click(object sender, EventArgs e)
{
lbl.Text = "test msg";
}
}

How can i set the label text here.
QuestionHow do i list the nearest location with in the specified kilometer range(eg:100KM) using google API..?? Pin
Rajeesh MP4-Feb-09 23:58
Rajeesh MP4-Feb-09 23:58 
QuestionRegarding Crystal Reports that comes integrated with VS 2005 Pin
NetBot4-Feb-09 23:53
NetBot4-Feb-09 23:53 
AnswerRe: Regarding Crystal Reports that comes integrated with VS 2005 Pin
NetBot5-Feb-09 1:04
NetBot5-Feb-09 1:04 
QuestionRegular Expression Pin
Kodanda Pani4-Feb-09 23:40
Kodanda Pani4-Feb-09 23:40 
AnswerRe: Regular Expression Pin
Kodanda Pani5-Feb-09 14:37
Kodanda Pani5-Feb-09 14:37 
AnswerRe: Regular Expression Pin
Ranjit Viswakumar5-Feb-09 17:11
Ranjit Viswakumar5-Feb-09 17:11 
QuestionBinding Data to DropDown List from Database in Alphabetical order Pin
pavanip4-Feb-09 23:08
pavanip4-Feb-09 23:08 
AnswerRe: Binding Data to DropDown List from Database in Alphabetical order Pin
Christian Graus4-Feb-09 23:17
protectorChristian Graus4-Feb-09 23:17 
AnswerRe: Binding Data to DropDown List from Database in Alphabetical order Pin
BalasubramanianK5-Feb-09 0:16
BalasubramanianK5-Feb-09 0:16 
GeneralRe: Binding Data to DropDown List from Database in Alphabetical order Pin
pavanip5-Feb-09 0:21
pavanip5-Feb-09 0:21 
GeneralRe: Binding Data to DropDown List from Database in Alphabetical order Pin
BalasubramanianK5-Feb-09 0:38
BalasubramanianK5-Feb-09 0:38 
GeneralRe: Binding Data to DropDown List from Database in Alphabetical order Pin
pavanip5-Feb-09 0:53
pavanip5-Feb-09 0:53 
AnswerRe: Binding Data to DropDown List from Database in Alphabetical order Pin
Sneha Bisht5-Feb-09 0:57
Sneha Bisht5-Feb-09 0:57 
QuestionSystem.NullReferenceException: Object reference not set to an instance of an object. Pin
M.Ambigai4-Feb-09 23:04
M.Ambigai4-Feb-09 23:04 
AnswerRe: System.NullReferenceException: Object reference not set to an instance of an object. Pin
Christian Graus4-Feb-09 23:16
protectorChristian Graus4-Feb-09 23:16 
QuestionHelp Writing Soap Pin
RedDiamonds4-Feb-09 23:02
RedDiamonds4-Feb-09 23:02 
AnswerRe: Help Writing Soap Pin
Christian Graus4-Feb-09 23:11
protectorChristian Graus4-Feb-09 23:11 

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.