Click here to Skip to main content
15,911,306 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to check a dll first on client machine and than allow that machine to access my application Pin
Member 422824615-Sep-08 19:17
Member 422824615-Sep-08 19:17 
AnswerRe: How to check a dll first on client machine and than allow that machine to access my application Pin
Christian Graus15-Sep-08 19:39
protectorChristian Graus15-Sep-08 19:39 
GeneralRe: How to check a dll first on client machine and than allow that machine to access my application Pin
Member 422824615-Sep-08 19:46
Member 422824615-Sep-08 19:46 
GeneralRe: How to check a dll first on client machine and than allow that machine to access my application Pin
N a v a n e e t h15-Sep-08 21:24
N a v a n e e t h15-Sep-08 21:24 
QuestionHow to display related record detail on linkbutton click inside formview (problem) Pin
Rameez Raja15-Sep-08 19:15
Rameez Raja15-Sep-08 19:15 
QuestionDatabinding HTML input Text control Pin
Blumen15-Sep-08 19:02
Blumen15-Sep-08 19:02 
QuestionValidation for textbox Pin
g_amol15-Sep-08 18:41
g_amol15-Sep-08 18:41 
AnswerRe: Validation for textbox Pin
Linda1st16-Sep-08 9:14
Linda1st16-Sep-08 9:14 
<!-- first: set causesValidation attributon to your controls to true
second: for each control add a requiredFieldValidator
third: set the validationGroup attribute for the button to Group1

-->
<asp:TextBox ID="txtBox1" runat="server" CausesValidation="true" OnTextChanged="txtPrefix_TextChanged" ></asp:TextBox>

<asp:TextBox ID="txtBox2" runat="server" CausesValidation="true" OnTextChanged="txtPrefix_TextChanged" ></asp:TextBox>

<asp:RequiredFieldValidator ID="reqPrefix" runat="server" ErrorMessage="Enter Prefix" ControlToValidate="txtBox1" ValidationGroup="GROUP1" > </asp:RequiredFieldValidator>

<asp:RequiredFieldValidator ID="reqPrefix" runat="server" ErrorMessage="Enter Prefix" ControlToValidate="txtBox2" ValidationGroup="GROUP1" > </asp:RequiredFieldValidator>



<asp:Button ID="btnValidatePart" runat="server" Text="Validate" ValidationGroup="GROUP1" EnableViewState="true" OnClick="btnValidatePart_Onclick" />

xxx

GeneralRe: Validation for textbox Pin
g_amol18-Sep-08 21:37
g_amol18-Sep-08 21:37 
QuestionASP.Net C#; How to create a pictureBox at runtime Pin
Linda1st15-Sep-08 17:30
Linda1st15-Sep-08 17:30 
AnswerRe: ASP.Net C#; How to create a pictureBox at runtime Pin
Gamzun15-Sep-08 19:24
Gamzun15-Sep-08 19:24 
QuestionMy Site gives "Server Error in / Application" when default.aspx page is requested Pin
Omage femi15-Sep-08 16:15
Omage femi15-Sep-08 16:15 
AnswerRe: My Site gives "Server Error in / Application" when default.aspx page is requested Pin
N a v a n e e t h15-Sep-08 16:34
N a v a n e e t h15-Sep-08 16:34 
GeneralRe: My Site gives "Server Error in / Application" when default.aspx page is requested Pin
Omage femi15-Sep-08 17:16
Omage femi15-Sep-08 17:16 
GeneralRe: My Site gives "Server Error in / Application" when default.aspx page is requested Pin
N a v a n e e t h15-Sep-08 17:55
N a v a n e e t h15-Sep-08 17:55 
QuestionQuerystring in Gridview HyperLinkField Pin
Humayun Shabbir15-Sep-08 14:52
Humayun Shabbir15-Sep-08 14:52 
AnswerRe: Querystring in Gridview HyperLinkField Pin
SunithaNallana15-Sep-08 22:20
SunithaNallana15-Sep-08 22:20 
GeneralRe: Querystring in Gridview HyperLinkField Pin
Humayun Shabbir16-Sep-08 7:01
Humayun Shabbir16-Sep-08 7:01 
AnswerRe: Querystring in Gridview HyperLinkField Pin
Linda1st16-Sep-08 9:06
Linda1st16-Sep-08 9:06 
QuestionAdding a text box or a control on a webform. Pin
udaykatakam15-Sep-08 13:05
udaykatakam15-Sep-08 13:05 
AnswerRe: Adding a text box or a control on a webform. Pin
N a v a n e e t h15-Sep-08 16:13
N a v a n e e t h15-Sep-08 16:13 
AnswerRe: Adding a text box or a control on a webform. Pin
Gamzun15-Sep-08 16:27
Gamzun15-Sep-08 16:27 
GeneralRe: Adding a text box or a control on a webform. Pin
N a v a n e e t h15-Sep-08 16:32
N a v a n e e t h15-Sep-08 16:32 
GeneralRe: Adding a text box or a control on a webform. Pin
Gamzun15-Sep-08 16:41
Gamzun15-Sep-08 16:41 
AnswerRe: Adding a text box or a control on a webform. Pin
Linda1st16-Sep-08 9:52
Linda1st16-Sep-08 9:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.