If you are working within a LAN(I mean accessing the page from other computer within a LAN), we can specify the computername instead of IPAddress.
for ex: http://Dev520/SampleProject/SamplePage.aspx
Here 'Dev520' is a computer name.
Hope this might be useful.
User Profile
Collapse
-
Infragistics Web charts
Hi,
I am using Infragistics Web chart in one of the applications. It is working fine on the localsystem. But When I tried to deploy it and run on other systems(even on local system), it is not displaying webcharts.
So Please help me how to overcome this problem? What precautions need to be taken while deploying the application?
Thanks in Advance... -
Hi,
You can use Sessions for maintaing state in between page visists. Put the value you want in the Report page, in a session and then u can retrieve it from Report page.
For ex:
Session["userName"] = "root";
in Report page:
string strUser = Session["userName"].ToString();
Hope this might be useful....Leave a comment:
-
Hi,
You can impose that constraint of ensuring unique users in the application code itself. Check whether the name entered in the textbox(usernam e) is already exists in the table(in database) by parsing through the records...
for ex:
.....
.....
dataAdapter.Fil l(dataSet);
int userFound=0;
int i=0;
for(i=0;i<dataS et.Tables[0].Rows.Count;i++ )
{
...Leave a comment:
-
DisablingBback Nav
Hi,
I want to disable the browser's back navigator button in all the pages of an application. How can I do that? -
Instead of using server=MUM2\SQL SERVER, write the follwing
data source=MUM2\SQL SERVERLeave a comment:
-
Disabling ASP.Net Server controls
Hi,
I want to disable Server controls, and enable them when sertain event occurs? How should I proceed? -
Web service call method?
Hi,
What is the default mode(Synchronou s or Asynchronous) used when calling a web service method?
No activity results to display
Show More
Leave a comment: