Forum: ASP.NET Jul 1st, 2009 |
| Replies: 1 Views: 915 Hi,
I have a page which needs to collect data from user in steps. I have used the Multiview and then four views in that multiview as i have four steps to follow.
In last step i mean in step four... |
Forum: ASP.NET Oct 23rd, 2008 |
| Replies: 4 Views: 1,228 Humm
This seems to be very intresting problem but very easy still good to be a final year project.
Regarding the technologies .NEt is the best for these kind of projects this supports the file... |
Forum: ASP.NET Oct 23rd, 2008 |
| Replies: 0 Views: 528 Hi,
I am using the freetextbox control in my page.
This is used to design the pages on run time. But problem is that when i write the text first time to save this is working fine and showing the... |
Forum: ASP.NET Sep 2nd, 2008 |
| Replies: 0 Views: 1,508 Here i am attatching the source code and the excel file. When i use this code it generates the error , "The external table is not in correct format'.
Code:
private string StrConn = "";
... |
Forum: ASP.NET Jul 24th, 2008 |
| Replies: 12 Views: 2,376 Try to set the selected index of the dropdown to 0 after adding all items to the control and do the items addition in not post back condition like this...
if not (page.ispostback)
your code to... |
Forum: ASP.NET Jul 5th, 2008 |
| Replies: 1 Views: 2,514 try this
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "NOTEPAD.EXE";
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized ;
... |
Forum: ASP.NET Jul 5th, 2008 |
| Replies: 12 Views: 2,376 enable the autopost back of the dropdown list and then in selected index changed event get the selected value.
when you click the dropdown it will show the items and after you click any item the... |
Forum: ASP.NET Jun 11th, 2008 |
| Replies: 6 Views: 771 I think it can be done because even in this case tcplistner and tcpclient classes can be used.
If you got some other idea plz post it. |
Forum: ASP.NET Jun 10th, 2008 |
| Replies: 4 Views: 3,409 you must try the
dim invID as integer = httpcontext.current("inventoryID") |
Forum: ASP.NET Jun 10th, 2008 |
| Replies: 5 Views: 815 I am doing also a chating application with database connectivity whenever a person connects to server it is checked that if he is authorised or not and then logged in accordingly. let me two or three... |
Forum: ASP.NET Jun 10th, 2008 |
| Replies: 2 Views: 433 Thanks for your response i have done this |
Forum: ASP.NET Jun 10th, 2008 |
| Replies: 2 Views: 4,107 you can show a "select" button and then
in the "selectedindexchanged" of the gridview show the selected row in the controls i.e text boxes and labels such
as
textbox1.text =... |
Forum: ASP.NET Jun 9th, 2008 |
| Replies: 2 Views: 433 Hi,
I have a client/server chat application, with tcplistner and tcpclient.
It is working fine when i send message from client to server but still i am not able to send the message from server to... |
Forum: ASP.NET Jun 7th, 2008 |
| Replies: 3 Views: 670 because partial update just filters the updated contents to lessen the burdon of post back bulk data but remaing the page life cycle is done in routine there is no difference
Hope this will help... |
Forum: ASP.NET Jun 7th, 2008 |
| Replies: 3 Views: 670 |
Forum: ASP.NET Jun 7th, 2008 |
| Replies: 5 Views: 1,504 Ok i understand you can go through from this link
http://msdn.microsoft.com/en-us/library/ms972974.aspx
this contains all the neccessary information and security reason you are talking about ... |
Forum: ASP.NET Jun 7th, 2008 |
| Replies: 5 Views: 1,504 i dont understand why you are intrested to do so, yet
www.mysite.com/demo.aspx?id=1
is quite safe method
can you explain your problem in detail may be i can help you . |
Forum: ASP.NET Jun 7th, 2008 |
| Replies: 2 Views: 626 I am not sure what sql server you are using.
if you have not provided any password for sa during the installation then you have not set it to do so enable the user sa and set its password of your... |
Forum: ASP.NET Jun 6th, 2008 |
| Replies: 1 Views: 1,303 i THINK THAT WHEN YOU CLICK THE GRID ADD BUTTON TO CREATE A NEW CLIENT YOU MUST FIND THE USERID CONTROL FROM GRID AND THEN SET ITS VALUE AS YOU DESIRED |
Forum: ASP.NET Jun 6th, 2008 |
| Replies: 1 Views: 885 Hi,
I want to develop a simple Client/Server Messaging windows application.
I know that sockets are used to create these kind of applications.
Any one can teach me how to connect clients to... |
Forum: ASP.NET Jun 6th, 2008 |
| Replies: 2 Views: 811 Hi, Ericstenson
Thank you for you reply,
I got the logic and performed http request and read the data in stream, and showed that on a label.
NOw is the real challenge i want to find some data in... |
Forum: ASP.NET Jun 5th, 2008 |
| Replies: 0 Views: 1,046 I want to read all data on a aspx page.
Simply i want to build a page with a textbox and a button.
When i click the button it will fetch data from the website whose address i have given, and then... |
Forum: ASP.NET Jun 5th, 2008 |
| Replies: 0 Views: 914 I want to read the body tag of an online aspx page in my aspx page to get the data displayed on that page. How to do that. |
Forum: ASP.NET Jun 5th, 2008 |
| Replies: 2 Views: 811 I am a programmer with not more than 2 months experience and facing a very difficult chellange.
I want to read an online page in my aspx page to get the data on that page.
is it possible to read a... |