
Gertie
Members-
Posts
25 -
Joined
-
Last visited
Personal Information
-
Occupation
student
-
.NET Preferred Language
ASP.NET
Gertie's Achievements
Newbie (1/14)
0
Reputation
-
jup jup, that's the cause off the damage! thanks for your help guys
-
It has got nothing to do with your code. I had written a complete email service class, and it worked perfectly on the laptop i was using. Now i've taken the complete programme on my pc at home, with IIS and .NET 1.0 on it. And it doesn't work. The reason, seems to be that SMTP is not working properly!! I've read that i need to reinstall it, but i don't know how to reinstall the SMTP stuff without uninstalling IIS?! Can someone help me?
-
The input tag has got the layout for textboxes on it. And i have like a zillion textboxes but only 3-4 checkboxes. Therefor a checklist gets the layout of a textbox. And putting the cssclass on the checklistbox doesn't work. That's the problem. You see? any suggestions? greetz Gertie
-
How do you do this? Can you explain me how to make a Custom Control? I've never done that before. Isn't there an easier way to force .NET to just put the class on the Input tag instead of the table? Thanks for the fast reply and all. Greetz Gertie
-
I have a radiobuttonlist and a checkboxlist in my page. Now i'm putting a CSS on my pages wherein the INPUT class= for all the textboxes is set to make them all equal in size and color... But now he takes this also for the radiobuttonlist: it also is a input for the HTML code. This would not result in a problem at all when i would create a class in my CSS to assign to the radiobuttonlist or checkboxlist. So i did. Problem now is that he takes the ASP.NET code and makes the following HTML from it. <table id="rblDatum" class="optievak" border="0" style="width:179px;"> <tr> <td><input id="rblDatum_0" type="radio" name="rblDatum" value="nieuwer" checked="checked" /><label for="rblDatum_0">en nieuwer</label></td> </tr><tr> <td><input id="rblDatum_1" type="radio" name="rblDatum" value="ouder" /><label for="rblDatum_1">en ouder</label></td> </tr> </table> what is terrible, because the class is on the table,not on the input: therefor the input keeps his CSS and looks like a textbox! witch is not the plan! thanks for any help on this, Gertie
-
I had a validator on it. The requiredfieldvalidator, seems to change that 'onclick' event. So it only does the validate. Now i've turned the validation OF and made a validation in the code behind, to show a "home-made" label with "please fill in..." Et Voila, the confirm started working!! ;) thx Guys beybey
-
Hello, I'd like to search for a word in a string. And whenever i get an occurence it takes the word + X-words around it!! Let me explain with an example. if i have a string: "Hello, my name is Gertjan the ASP Guy from Belgium let me thank you al for helping me!" Then if i search on this string for "an" and is set X=3 then it wil give me the words with "an" in it and 3 words before and 3 words after that word. With "..." in between. The result would be: "... my name is Gertjan the ASP Guy ... Belgium let me than you al for ..." I can already get the AN in bold. so for the moment i already have in a second string: "Hello, my name is Gertjan the ASP Guy from Belgium let me thank you al for helping me!" I've done this with Regular Expressions. thx for the help, Gertie
-
not working javascript confirm? I have a button btnWis and in my page_load i try to give him a javascript to ask the user to go on or not (dutch). But it doesn't do a thing? What have i done wrong? btnWis.Attributes.Add("onclick", "return confirm('Bent u zeker dat u deze aanvraag wil verwijderen?');") I've also tried btnWis.Attributes("onclick")="javascript:return confirm('Bent u zeker dat u deze aanvraag wil verwijderen?');" but nothing works. ps: it worked once, but for one reason or another it stopped working? strange!! thx, Greetz Gertie :-\
-
Ok, I have got .NET framework 1.0 and Developer Environment 7.0 installed on my computer and there is no checkedlistbox in my toolbox. (there isn't even a submenu Windows Forms). Do I need to instal a later version of .NET? Or do i have to get something extra, or maybe i have to put on some option somewhere? I'm programming an ASP.NET application with VB, i hope this hasn't got anything to do with it? Thx for the fast reply. Greetz Gertie
-
I don't have a menu for windows forms, and i don't find the checkedlistbox? Is there something i have to do to get it? Thx guys, Gertie
-
ok, so far so far all i came up with is making a function in the user control named GiveUser that returns the string. Then i made following changes in my form. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here Dim hoofding As Control = Page.FindControl("Hoofding") Dim hoofdingType As Type = hoofding.GetType Dim hoofdingGetUser As PropertyInfo = hoofdingType.GetProperty("GiveUser") strUser = hoofdingGetUser.GetValue(hoofding, Nothing).ToString() If strUser = "" Then pnlLogIn.Visible = False pnlLogOut.Visible = True Else pnlLogIn.Visible = True pnlLogOut.Visible = False End If End Sub thanks, guys for any help on this
-
Hello, I have a usercontrol. In it is a string declared. Now for me a simple question, but not easy to find an answer on the net: Can i get the value of this string to a new string in the form that has the ascx file implemented on it? thanks a lot, Gertie
-
I'm terribly sorry guys, but here i am again with, what probably is, a stupid question. Is it possible to create a listbox with in it checkboxes?? so you can instead of selecting the items in the listbox, select the checkboxes? And if it is possible? how?? Thanks, Gertie
-
Thanks guys, It's working, and now i'm going on to the next level!! It's like super mario bross, you kill one mean boss, you get another!! No problem, just let them come!! I've picked up enough mushrooms and flowers!! *pling pling* :cool: :D
-
thanks you, I hope i get this started today. Because i'm working against a deadline, i only have 3 days to make a FAQ page. It is not a big one, but al in al it still is a big task! see you, gertie