No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hello ! I'm working on a project which allows user to design forms/questionnaires using asp.net website, and once done. The questions should be generated on a .net mobile web page to be filled up using mobile phone browser. The question is - when designing the form is done, should I …
Explain what you need first. Are you intending to limit the input to your textbox to only accept specific numbers? Should probably use validators to solve the issue. Good luck
Add the following code to your Home (Masterpage as you call it). In the Page_Load event: Response.Buffer = true; Response.ExpiresAbsolute = DateTime.Now.AddDays(-1d); Response.Expires = -1500; Response.CacheControl = "no-cache"; if (Session["username"] == "xx") { Response.Redirect("Login.aspx"); } else { Label1.Text = "Welcome " + Session["username"] + "!"; } And in the Logout …
Try using Openwave V7 Simulator .. Works fine!
Hey Narue! I need ur help on a upper-lower case switch problem.. Read the contents of a text file (using ifstream class).. and create a new file or edit the same one (using ofstream class) to switch the case of each char (upper to lower & vice versa).. Thanks a …
The End.
miraclebos