freelanceprogrammers.org Forum Index » ASP
ASP.NET
Joined: 26 Dec 2004
Posts: 2
ASP.NET
Hi
I am just starting to work on ASP.NET at home .I did an guestbook
entry and insert aspx pages.But on executing it i am not able to
store the data in the table.There is no error in my program .What is
it that i should remember when i am inserting a record in to a table.
Regards
Malathi
Joined: 26 Dec 2004
Posts: 2
ASP.NET
Hi
I am just starting to work on ASP.NET at home .I did an guestbook
entry and insert aspx pages.But on executing it i am not able to
store the data in the table.There is no error in my program .What is
it that i should remember when i am inserting a record in to a table.
Regards
Malathi
Joined: 26 Dec 2004
Posts: 12
ASP.NET
Malathi,
It could be many different things.
Post your code so that we can see what you are doing.
Mark
kuskaus <kuskaus@...> wrote:
Hi
I am just starting to work on ASP.NET at home .I did an guestbook
entry and insert aspx pages.But on executing it i am not able to
store the data in the table.There is no error in my program .What is
it that i should remember when i am inserting a record in to a table.
Regards
Malathi
Yahoo! Groups SponsorADVERTISEMENT
---------------------------------
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
To unsubscribe from this group, send an email to:
AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
Joined: 26 Dec 2004
Posts: 1
ASP.NET
send your code so that i can find out the error.
........................................................
>From: "kuskaus" <kuskaus@...>
>Reply-To: AspNetAnyQuestionIsOk@yahoogroups.com
>To: AspNetAnyQuestionIsOk@yahoogroups.com
>Subject: [AspNetAnyQuestionIsOk] ASP.NET
>Date: Sun, 26 Dec 2004 15:35:34 -0000
>
>
>
>Hi
>
>I am just starting to work on ASP.NET at home .I did an guestbook
>entry and insert aspx pages.But on executing it i am not able to
>store the data in the table.There is no error in my program .What is
>it that i should remember when i am inserting a record in to a table.
>
>Regards
>Malathi
>
>
>
>
>
>
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it`s FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
Joined: 27 Dec 2004
Posts: 3
ASP.NET
I would use a Stored procedure and execute the stored procedure by passing it
the appropriate data
Something like this:
CREATE PROCEDURE sp_uc_tlTelephone_AddNew_Cont
@FK_ContID varchar(5),
@Tel_Type varchar(50),
@Tel_Number varchar(50),
@IsPrimary varchar(50),
@Active int
AS
Set nocount off
Insert tl_Telephone
(FK_ContID,
Tel_Type,
Tel_Number,
IsPrimary,
Active)
Values(
@FK_ContID,
@Tel_Type,
@Tel_Number,
@IsPrimary,
@Active
)
GO
The sp call in your code would look something like this:
string strSql = "sp_uc_tlTelephone_AddNew_Cont `" + FK_ContID + "`, `" +
Tel_Type + "`, `" + Tel_Number + "`, `" + IsPrimary, Active
you avoid messing with the quotes and figuring out the proper concatenation if
you use a parameters object...
Joe
----- Original Message -----
From: kuskaus
To: AspNetAnyQuestionIsOk@yahoogroups.com
Sent: Sunday, December 26, 2004 10:35 AM
Subject: [AspNetAnyQuestionIsOk] ASP.NET
Hi
I am just starting to work on ASP.NET at home .I did an guestbook
entry and insert aspx pages.But on executing it i am not able to
store the data in the table.There is no error in my program .What is
it that i should remember when i am inserting a record in to a table.
Regards
Malathi
Yahoo! Groups Sponsor
ADVERTISEMENT
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
b.. To unsubscribe from this group, send an email to:
AspNetAnyQuestionIsOk-unsubscribe@yahoogroups.com
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
Joined: 07 Jan 2006
Posts: 4
ASP.NET
Hi,
I need to learn ASP.NET fast. What is the fastest way to learn it and
what books do you recommend?
Thanks!
Joined: 07 Jan 2006
Posts: 63
ASP.NET
Asp.net Unleashed by Steven Walther
http://www.amazon.com/exec/obidos/ISBN=067232542X/learnasp
Asp.net/Vstudio 1.1
-or-
http://www.amazon.com/exec/obidos/ISBN=0672328232/learnasp
Vstudio 2.0
On 1/6/06, withabreeze <withabreeze@...> wrote:
> Hi,
>
> I need to learn ASP.NET fast. What is the fastest way to learn it and
> what books do you recommend?
>
> Thanks!
Joined: 07 Jan 2006
Posts: 7
ASP.NET
hi renu,
sorry for late this is the code i use it in the linkbutton click event in the
server site to call a javascript popup page
Dim NewPage As String = "STD_ExamStudentsAdd.aspx"
Me.RegisterStartupScript("New_Window", _
"<script language=`javascript`>window.open(`" & NewPage &
"`,``,`top=20,left=80,width=850,height=550,scrollbars=yes,location=no,directorie
s=no,status=no,menubar=no,toolbar=no,resizable=yes`);</script>")
End Sub
hi jamil, i m doing the same thing in my project but still i m
able 2 access the session variables both in calling page and in called
page....i haven`t done anything special 2 force the page to open in such a
way..... can u post ur code where u r calling the popup so that i can check
whats exactly the problem...... regards renu -----Original Message-----
From: AspNetAnyQuestionIsOk@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of
jamil tamimi Sent: Thursday, December 22, 2005 1:50 PM To:
AspNetAnyQuestionIsOk@yahoogroups.com Subject: [AspNetAnyQuestionIsOk]
Javascript popup hi all, i work in a project and create a
javascript popup pages. i face a problem when i call the popup page it is give
a block page and loose the session. what is the way to force the page to open
without blocking or lossing the session. best regards
---------------------------------
Yahoo! Photos
Ring in the New Year with Photo Calendars. Add photos, events, holidays,
whatever.
[Non-text portions of this message have been removed]
All times are GMT
Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Freelace Website Designer - Customer web design and software building.
China Wholesale - Electronics Products
Character Studio - Tutorials and Help
China Wholesale - Electronics Products
Character Studio - Tutorials and Help







