Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~611 People Reached
Favorite Tags

5 Posted Topics

Member Avatar for miraclebos

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 …

Member Avatar for miraclebos
0
133
Member Avatar for jamshed ahmed

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

Member Avatar for kvprajapati
0
165
Member Avatar for rohitmanhas_12

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 …

Member Avatar for miraclebos
0
86
Member Avatar for Kusno
Member Avatar for miraclebos

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 …

Member Avatar for miraclebos
0
168

The End.