I am using ASP.Net 2.0. I added the following code in
button_Click page. but 'PreviousPage' is not taking as a
keyword. It throughs an error.
Page Poster = this.PreviousPage;
TextBox txtNewTest = (TextBox)Poster.FindControl("txtTest");
sDisplay = txtNewTest.Text;
Response.Write(sDisplay);
The following is the Error Message:
'controls_LoginMain' does not contain a definition
for 'PreviousPage'
I have developed a web application in asp.net 2.0 with
Access as back end i am trying to gereate report/export
data in excel. After hosting the site i am not getting any
error or such exported excel file. but using the source
code from my system it works fine.
Could any one tell me why it is happening and what is its
solution.
Hi, I am working in a small software company in asp.net
platform. I need to know how and what are all the task in
asp.net will be assigned for the developers in mnc
companies. Thanks in advance.
I have a datagrid of 10 rows and I am updating the fifth
row using template column edit. How wil u know that the row
is updated, so that it can be send to database for updating
the respective table?
Can the action attribute of a server-side
tag be set to a value and if not how can you possibly pass
data from a form page to a subsequent page?
92
Am not able to move the controls on the form freely in
asp.net 3.5 even though I selected the position as relative
or absolute for those controls. What should I do to overcome
this?
50
What is reflection and disadvantages of reflection ?
how to implement some securty aspect in our application i.e
1.cookie poisioning.
2.data encryption.
3.forcefull browsing
4.sql/code injection
5.securing web app by using web services
........my question is how to implement these thing in our
application
is this done by hard coding or by help of some tool
52
while developing webservices if i want some users to use my
webservice only how can i give security to my webservice?
56
Where we create sessions for Banking Applications and how to
create? expalin with code?
Guys can anobody tell what is Conditional Bloating
in asp.net ??
56
a web application needs to be created to accept the product
name and quantity of a toy from a customer. After the
customer has entered the product name the application needs
to display the discounted price of the product to the
customer (company is offering 35% discount on all products).
The application should allow the customer to select the
product name from a list box. and also while i'm data
binding to a label with custom data binding with some
declarations : "The Discounted Price is
"+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text))
-
((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)).
Where i need to give this declaration in asp.net 2.0.
I am trying to implement sorting facility from client side
code in GridView Control.
So how can I fill up an Array inside client side code
(using JavaScript), i want to assign my DataSet object
declared and filled up on Server side(in code behind) to
the array (on client side)